summaryrefslogtreecommitdiff
path: root/isisd/isis_csm.c
diff options
context:
space:
mode:
Diffstat (limited to 'isisd/isis_csm.c')
-rw-r--r--isisd/isis_csm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/isisd/isis_csm.c b/isisd/isis_csm.c
index 96728d5e..8e57d398 100644
--- a/isisd/isis_csm.c
+++ b/isisd/isis_csm.c
@@ -78,7 +78,7 @@ isis_csm_state_change (int event, struct isis_circuit *circuit, void *arg)
old_state = circuit ? circuit->state : C_STATE_NA;
- zlog_info ("CSM_EVENT: %s", EVENT2STR (event));
+ zlog_debug ("CSM_EVENT: %s", EVENT2STR (event));
switch (old_state)
{
@@ -176,8 +176,8 @@ isis_csm_state_change (int event, struct isis_circuit *circuit, void *arg)
zlog_warn ("Invalid circuit state %d", old_state);
}
- zlog_info ("CSM_STATE_CHANGE: %s -> %s ", STATE2STR (old_state),
- circuit ? STATE2STR (circuit->state) : STATE2STR (C_STATE_NA));
+ zlog_debug ("CSM_STATE_CHANGE: %s -> %s ", STATE2STR (old_state),
+ circuit ? STATE2STR (circuit->state) : STATE2STR (C_STATE_NA));
return circuit;
}