Merge pull request #3770 from donaldsharp/detailed_debugs

zebra: Update zserv debug messages to give a bit more useful info
This commit is contained in:
David Lamparter 2019-02-11 08:21:12 +01:00 committed by GitHub
commit fb85ce1b81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,7 @@
debug zebra kernel
debug zebra dplane detail
debug zebra rib
debug zebra event
!
hostname r1
password zebra

View File

@ -405,8 +405,10 @@ static int zserv_read(struct thread *thread)
}
/* Debug packet information. */
if (IS_ZEBRA_DEBUG_EVENT)
zlog_debug("zebra message comes from socket [%d]",
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("zebra message[%s:%u:%u] comes from socket [%d]",
zserv_command_string(hdr.command),
hdr.vrf_id, hdr.length,
sock);
if (IS_ZEBRA_DEBUG_PACKET && IS_ZEBRA_DEBUG_RECV)
@ -442,7 +444,8 @@ static int zserv_read(struct thread *thread)
}
if (IS_ZEBRA_DEBUG_PACKET)
zlog_debug("Read %d packets", p2p_orig - p2p);
zlog_debug("Read %d packets from client: %s", p2p_orig - p2p,
zebra_route_string(client->proto));
/* Reschedule ourselves */
zserv_client_event(client, ZSERV_CLIENT_READ);