1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

Great cleanup of debug messages. LOCAL_DEBUG turned off in most modules,

several debug() calls converted to DBG().
This commit is contained in:
Martin Mares
2000-03-12 21:01:38 +00:00
parent 6a9f28b0b9
commit 6b9fa32080
11 changed files with 30 additions and 26 deletions

View File

@@ -8,7 +8,7 @@
#include <string.h>
#define LOCAL_DEBUG
#undef LOCAL_DEBUG
#include "nest/bird.h"
#include "nest/route.h"
@@ -196,7 +196,7 @@ rt_feed_baby(struct proto *p)
if (!p->ahooks)
return;
debug("Announcing routes to new protocol %s\n", p->name);
DBG("Announcing routes to new protocol %s\n", p->name);
for(h=p->ahooks; h; h=h->next)
{
rtable *t = h->table;