Skip to content

Commit d022b09

Browse files
authored
Merge pull request #110 from freeswitch/newline
tport: fix missing new line at the end of messages when they are printed to the log
2 parents 1607ade + 8ff7e35 commit d022b09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libsofia-sip-ua/tport/tport_logging.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -901,6 +901,6 @@ void tport_log_msg(tport_t *self, msg_t *msg,
901901
buffer_pos = buffer_size - 1;
902902
}
903903
buffer[buffer_pos] = '\0';
904-
su_log("%s", buffer);
904+
su_log("%s\n", buffer);
905905
free(buffer);
906906
}

0 commit comments

Comments
 (0)