diff options
| author | ajs <ajs> | 2004-12-07 21:12:56 +0000 | 
|---|---|---|
| committer | ajs <ajs> | 2004-12-07 21:12:56 +0000 | 
| commit | b6178002270192fe3ab2403dafac12e5babe11e6 (patch) | |
| tree | 6b9c352d814185e16a353d17752059eb995019e0 /zebra/zserv.c | |
| parent | 8ddca7040da413cd283a4beba4634744f4e61ac8 (diff) | |
2004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
	* *.c: Change level of debug messages to LOG_DEBUG.
Diffstat (limited to 'zebra/zserv.c')
| -rw-r--r-- | zebra/zserv.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/zebra/zserv.c b/zebra/zserv.c index 09dddf63..47eb49a4 100644 --- a/zebra/zserv.c +++ b/zebra/zserv.c @@ -1251,7 +1251,7 @@ zebra_client_read (struct thread *thread)    if (nbyte <= 0)       {        if (IS_ZEBRA_DEBUG_EVENT) -	zlog_info ("connection closed socket [%d]", sock); +	zlog_debug ("connection closed socket [%d]", sock);        zebra_client_close (client);        return -1;      } @@ -1261,7 +1261,7 @@ zebra_client_read (struct thread *thread)    if (length < 3)       {        if (IS_ZEBRA_DEBUG_EVENT) -	zlog_info ("length %d is less than 3 ", length); +	zlog_debug ("length %d is less than 3 ", length);        zebra_client_close (client);        return -1;      } @@ -1275,7 +1275,7 @@ zebra_client_read (struct thread *thread)        if (nbyte <= 0)   	{  	  if (IS_ZEBRA_DEBUG_EVENT) -	    zlog_info ("connection closed [%d] when reading zebra data", sock); +	    zlog_debug ("connection closed [%d] when reading zebra data", sock);  	  zebra_client_close (client);  	  return -1;  	} @@ -1283,10 +1283,10 @@ zebra_client_read (struct thread *thread)    /* Debug packet information. */    if (IS_ZEBRA_DEBUG_EVENT) -    zlog_info ("zebra message comes from socket [%d]", sock); +    zlog_debug ("zebra message comes from socket [%d]", sock);    if (IS_ZEBRA_DEBUG_PACKET && IS_ZEBRA_DEBUG_RECV) -    zlog_info ("zebra message received [%s] %d",  +    zlog_debug ("zebra message received [%s] %d",   	       zebra_command_str[command], length);    switch (command)  | 
