Skip to content

Commit

Permalink
sipcapture: Terminate the log line with a \n
Browse files Browse the repository at this point in the history
Add a newline to avoid the log of other messages starting behind
the REQUEST, PRE output.
  • Loading branch information
zecke committed Oct 28, 2016
1 parent 4a729bd commit 6429a2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/sipcapture/sipcapture.c
Expand Up @@ -2825,7 +2825,7 @@ static int pv_parse_hep_name (pv_spec_p sp, str *in)
if(sp==NULL || in==NULL || in->len<=0)
return -1;

LM_ERR("REQUEST, PRE, %.*s", in->len, in->s);
LM_ERR("REQUEST, PRE, %.*s\n", in->len, in->s);

switch(in->len)
{
Expand Down

0 comments on commit 6429a2d

Please sign in to comment.