diff options
| author | David Lamparter <equinox@diac24.net> | 2020-03-24 19:15:04 +0100 | 
|---|---|---|
| committer | David Lamparter <equinox@diac24.net> | 2020-03-24 19:43:18 +0100 | 
| commit | 63efca0e95c727318485fe6d37141f79b1401a88 (patch) | |
| tree | c07189c4864e1358e043cd25d8fdf76752ea899e /isisd/isis_adjacency.c | |
| parent | d6951e5ef9d0dc529dd94871f7186ca19b0459c8 (diff) | |
*: remove line breaks from log messages
Line break at the end of the message is implicit for zlog_* and flog_*,
don't put it in the string.  Mid-message line breaks are currently
unsupported.  (LF is "end of message" in syslog.)
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'isisd/isis_adjacency.c')
| -rw-r--r-- | isisd/isis_adjacency.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/isisd/isis_adjacency.c b/isisd/isis_adjacency.c index 1d70521e68..9beed206e8 100644 --- a/isisd/isis_adjacency.c +++ b/isisd/isis_adjacency.c @@ -353,7 +353,7 @@ void isis_adj_print(struct isis_adjacency *adj)  	if (dyn)  		zlog_debug("%s", dyn->hostname); -	zlog_debug("SystemId %20s SNPA %s, level %d\nHolding Time %d", +	zlog_debug("SystemId %20s SNPA %s, level %d; Holding Time %d",  		   sysid_print(adj->sysid), snpa_print(adj->snpa), adj->level,  		   adj->hold_time);  	if (adj->ipv4_address_count) {  | 
