You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2017/02/28 00:47:18 UTC

[2/4] qpid-proton git commit: PROTON-1418: pn_vlogf missing newline after log.

PROTON-1418: pn_vlogf missing newline after log.


Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/4417e356
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/4417e356
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/4417e356

Branch: refs/heads/master
Commit: 4417e3566b80cdde992b0a32491892a4c736f2bd
Parents: 0e81224
Author: Alan Conway <ac...@redhat.com>
Authored: Mon Feb 27 16:22:20 2017 -0500
Committer: Alan Conway <ac...@redhat.com>
Committed: Mon Feb 27 19:45:13 2017 -0500

----------------------------------------------------------------------
 proton-c/src/core/log.c | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/4417e356/proton-c/src/core/log.c
----------------------------------------------------------------------
diff --git a/proton-c/src/core/log.c b/proton-c/src/core/log.c
index 60c72e7..db83e7e 100644
--- a/proton-c/src/core/log.c
+++ b/proton-c/src/core/log.c
@@ -50,6 +50,7 @@ void pn_log_logger(pn_logger_t new_logger) {
 
 void pn_vlogf_impl(const char *fmt, va_list ap) {
     vfprintf(stderr, fmt, ap);
+    fprintf(stderr, "\n");
 }
 
 /**@internal


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org