Skip to content

Commit

Permalink
use debug level for sockline log message
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Chi committed Feb 15, 2013
1 parent 81d133d commit a8f3ebb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/rpki/rcli.c
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ static int sockline(
return sta;
if (ptr == NULL)
continue;
LOG(LOG_INFO, "Sockline: %s", ptr);
LOG(LOG_DEBUG, "Sockline: %s", ptr);
c = ptr[0];
if (!isspace((int)(unsigned char)(ptr[1])))
{
Expand Down Expand Up @@ -740,7 +740,7 @@ static int fileline(
char *cp;
for (cp = ptr; *cp >= ' '; cp++);
*cp = 0; // trim off CR/LF
LOG(LOG_INFO, "Sockline: %s", ptr);
LOG(LOG_DEBUG, "Sockline: %s", ptr);
c = ptr[0];
if (!isspace((int)(unsigned char)(ptr[1])))
{
Expand Down

0 comments on commit a8f3ebb

Please sign in to comment.