diff options
author | Martin Mares <mj@ucw.cz> | 2000-03-12 22:01:38 +0100 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-03-12 22:01:38 +0100 |
commit | 6b9fa320806ce8a734d865ebcb8052ba0e50c527 (patch) | |
tree | 29c22c36dd94eb3960fc6066ceac3a12bd1d3d46 /nest/iface.c | |
parent | 6a9f28b0b9254ba21c36126d6f10388815840001 (diff) | |
download | bird-6b9fa320806ce8a734d865ebcb8052ba0e50c527.tar bird-6b9fa320806ce8a734d865ebcb8052ba0e50c527.zip |
Great cleanup of debug messages. LOCAL_DEBUG turned off in most modules,
several debug() calls converted to DBG().
Diffstat (limited to 'nest/iface.c')
-rw-r--r-- | nest/iface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/iface.c b/nest/iface.c index cf91833..0ba6bef 100644 --- a/nest/iface.c +++ b/nest/iface.c @@ -426,7 +426,7 @@ auto_router_id(void) j = i; if (!j) die("Cannot determine router ID (no suitable network interface found), please configure it manually"); - log(L_INFO, "Guessed router ID %I according to interface %s", j->addr->ip, j->name); + log(L_INFO "Guessed router ID %I according to interface %s", j->addr->ip, j->name); config->router_id = ipa_to_u32(j->addr->ip); #endif } |