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

DBG now calls debug() instead of sending it to log().

This commit is contained in:
Martin Mares
1998-05-26 21:36:17 +00:00
parent d804db0dab
commit 5222c46ceb
2 changed files with 3 additions and 6 deletions

View File

@@ -39,7 +39,7 @@ void debug(char *msg, ...); /* Printf to debug output */
/* Debugging */
#ifdef LOCAL_DEBUG
#define DBG(x, y...) log(L_DEBUG x, ##y)
#define DBG(x, y...) debug(x, ##y)
#else
#define DBG(x, y...)
#endif