From 529d65b3db6a2a79cbdf9ca3a1aa915ce5776286 Mon Sep 17 00:00:00 2001 From: hasso Date: Fri, 24 Dec 2004 00:14:50 +0000 Subject: zlog_* cleanup. Level of debug messages to LOG_DEBUG. --- isisd/isis_events.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'isisd/isis_events.c') diff --git a/isisd/isis_events.c b/isisd/isis_events.c index 1193b260..cd30ee42 100644 --- a/isisd/isis_events.c +++ b/isisd/isis_events.c @@ -74,7 +74,7 @@ isis_event_circuit_state_change (struct isis_circuit *circuit, int up) area->circuit_state_changes++; if (isis->debugs & DEBUG_EVENTS) - zlog_info ("ISIS-Evt (%s) circuit %s", circuit->area->area_tag, + zlog_debug ("ISIS-Evt (%s) circuit %s", circuit->area->area_tag, up ? "up" : "down"); /* @@ -92,7 +92,7 @@ isis_event_system_type_change (struct isis_area *area, int newtype) struct isis_circuit *circuit; if (isis->debugs & DEBUG_EVENTS) - zlog_info ("ISIS-Evt (%s) system type change %s -> %s", area->area_tag, + zlog_debug ("ISIS-Evt (%s) system type change %s -> %s", area->area_tag, circuit_t2string (area->is_type), circuit_t2string (newtype)); if (area->is_type == newtype) @@ -209,7 +209,7 @@ isis_event_circuit_type_change (struct isis_circuit *circuit, int newtype) { if (isis->debugs & DEBUG_EVENTS) - zlog_info ("ISIS-Evt (%s) circuit type change %s -> %s", + zlog_debug ("ISIS-Evt (%s) circuit type change %s -> %s", circuit->area->area_tag, circuit_t2string (circuit->circuit_is_type), circuit_t2string (newtype)); @@ -286,8 +286,8 @@ isis_event_adjacency_state_change (struct isis_adjacency *adj, int newstate) if (!adj || !adj->circuit || !adj->circuit->area) return; - zlog_info ("ISIS-Evt (%s) Adjacency State change", - adj->circuit->area->area_tag); + zlog_debug ("ISIS-Evt (%s) Adjacency State change", + adj->circuit->area->area_tag); /* LSP generation again */ lsp_regenerate_schedule (adj->circuit->area); @@ -308,7 +308,7 @@ isis_event_dis_status_change (struct thread *thread) if (!circuit || !circuit->area) return 0; - zlog_info ("ISIS-Evt (%s) DIS status change", circuit->area->area_tag); + zlog_debug ("ISIS-Evt (%s) DIS status change", circuit->area->area_tag); /* LSP generation again */ lsp_regenerate_schedule (circuit->area); @@ -319,8 +319,8 @@ isis_event_dis_status_change (struct thread *thread) void isis_event_auth_failure (char *area_tag, const char *error_string, u_char *sysid) { - zlog_info ("ISIS-Evt (%s) Authentication failure %s from %s", - area_tag, error_string, sysid_print (sysid)); + zlog_debug ("ISIS-Evt (%s) Authentication failure %s from %s", + area_tag, error_string, sysid_print (sysid)); return; } -- cgit v1.2.1