diff options
author | David Lamparter <equinox@diac24.net> | 2020-03-24 17:38:20 +0100 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2020-03-24 18:47:12 +0100 |
commit | d6951e5ef9d0dc529dd94871f7186ca19b0459c8 (patch) | |
tree | 67f4482ef1d8f4b57f546adee863d7d9c7af65d4 /ospfd/ospf_spf.c | |
parent | Merge pull request #6050 from sworleys/PBR-No-Fail-Same-VRF (diff) | |
download | frr-d6951e5ef9d0dc529dd94871f7186ca19b0459c8.tar.xz frr-d6951e5ef9d0dc529dd94871f7186ca19b0459c8.zip |
*: remove tabs from log messages
Some logging systems are, er, "allergic" to tabs in log messages.
(RFC5424: "The syslog application SHOULD avoid octet values below 32")
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ospfd/ospf_spf.c')
-rw-r--r-- | ospfd/ospf_spf.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ospfd/ospf_spf.c b/ospfd/ospf_spf.c index 8b605b3ba..ae70a5c78 100644 --- a/ospfd/ospf_spf.c +++ b/ospfd/ospf_spf.c @@ -1401,13 +1401,13 @@ static int ospf_spf_calculate_timer(struct thread *thread) if (IS_DEBUG_OSPF_EVENT) { zlog_info("SPF Processing Time(usecs): %ld", total_spf_time); - zlog_info("\t SPF Time: %ld", spf_time); - zlog_info("\t InterArea: %ld", ia_time); - zlog_info("\t Prune: %ld", prune_time); - zlog_info("\tRouteInstall: %ld", rt_time); + zlog_info(" SPF Time: %ld", spf_time); + zlog_info(" InterArea: %ld", ia_time); + zlog_info(" Prune: %ld", prune_time); + zlog_info(" RouteInstall: %ld", rt_time); if (IS_OSPF_ABR(ospf)) - zlog_info("\t ABR: %ld (%d areas)", abr_time, - areas_processed); + zlog_info(" ABR: %ld (%d areas)", + abr_time, areas_processed); zlog_info("Reason(s) for SPF: %s", rbuf); } |