]> git.puffer.fish Git - mirror/frr.git/commitdiff
bfdd: use logging convention for remaining zlog_debug
authorPhilippe Guibert <philippe.guibert@6wind.com>
Mon, 25 Mar 2019 16:17:38 +0000 (17:17 +0100)
committerPhilippe Guibert <philippe.guibert@6wind.com>
Tue, 7 May 2019 13:49:39 +0000 (15:49 +0200)
zlog_debug is being replaced with log_debug, because all bfdd code uses
that way of logging information.

Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
bfdd/bfd.c

index e9645824f283d406de816b9d113388e50a7cabf9..ed4f50615a23f18644714653f3b372f323714f1c 100644 (file)
@@ -164,7 +164,7 @@ int bfd_session_enable(struct bfd_session *bs)
 
        /* Sanity check: don't leak open sockets. */
        if (bs->sock != -1) {
-               zlog_debug("session-enable: previous socket open");
+               log_debug("session-enable: previous socket open");
                close(bs->sock);
                bs->sock = -1;
        }