mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-07 13:33:15 +00:00
2004-12-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* *.h: Change level of debug messages to LOG_DEBUG.
This commit is contained in:
parent
d2c1f16be4
commit
d1db06faa8
@ -160,7 +160,7 @@ extern struct ospf6_lsa_handler unknown_handler;
|
|||||||
char buf[64]; \
|
char buf[64]; \
|
||||||
prefix2str (addr, buf, sizeof (buf)); \
|
prefix2str (addr, buf, sizeof (buf)); \
|
||||||
if (debug) \
|
if (debug) \
|
||||||
zlog_info ("Filter out Linklocal: %s", buf); \
|
zlog_debug ("Filter out Linklocal: %s", buf); \
|
||||||
continue; \
|
continue; \
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -170,7 +170,7 @@ extern struct ospf6_lsa_handler unknown_handler;
|
|||||||
char buf[64]; \
|
char buf[64]; \
|
||||||
prefix2str (addr, buf, sizeof (buf)); \
|
prefix2str (addr, buf, sizeof (buf)); \
|
||||||
if (debug) \
|
if (debug) \
|
||||||
zlog_info ("Filter out Unspecified: %s", buf); \
|
zlog_debug ("Filter out Unspecified: %s", buf);\
|
||||||
continue; \
|
continue; \
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -180,7 +180,7 @@ extern struct ospf6_lsa_handler unknown_handler;
|
|||||||
char buf[64]; \
|
char buf[64]; \
|
||||||
prefix2str (addr, buf, sizeof (buf)); \
|
prefix2str (addr, buf, sizeof (buf)); \
|
||||||
if (debug) \
|
if (debug) \
|
||||||
zlog_info ("Filter out Loopback: %s", buf); \
|
zlog_debug ("Filter out Loopback: %s", buf); \
|
||||||
continue; \
|
continue; \
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -190,7 +190,7 @@ extern struct ospf6_lsa_handler unknown_handler;
|
|||||||
char buf[64]; \
|
char buf[64]; \
|
||||||
prefix2str (addr, buf, sizeof (buf)); \
|
prefix2str (addr, buf, sizeof (buf)); \
|
||||||
if (debug) \
|
if (debug) \
|
||||||
zlog_info ("Filter out V4Compat: %s", buf); \
|
zlog_debug ("Filter out V4Compat: %s", buf); \
|
||||||
continue; \
|
continue; \
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -200,7 +200,7 @@ extern struct ospf6_lsa_handler unknown_handler;
|
|||||||
char buf[64]; \
|
char buf[64]; \
|
||||||
prefix2str (addr, buf, sizeof (buf)); \
|
prefix2str (addr, buf, sizeof (buf)); \
|
||||||
if (debug) \
|
if (debug) \
|
||||||
zlog_info ("Filter out V4Mapped: %s", buf); \
|
zlog_debug ("Filter out V4Mapped: %s", buf); \
|
||||||
continue; \
|
continue; \
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@ struct ospf6_lsdb
|
|||||||
if (lsa->retrans_count != 0) \
|
if (lsa->retrans_count != 0) \
|
||||||
continue; \
|
continue; \
|
||||||
if (IS_OSPF6_DEBUG_LSA_TYPE (lsa->header->type)) \
|
if (IS_OSPF6_DEBUG_LSA_TYPE (lsa->header->type)) \
|
||||||
zlog_info ("Remove MaxAge %s", lsa->name); \
|
zlog_debug ("Remove MaxAge %s", lsa->name); \
|
||||||
ospf6_lsdb_remove (lsa, lsdb); \
|
ospf6_lsdb_remove (lsa, lsdb); \
|
||||||
} \
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
Loading…
Reference in New Issue
Block a user