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/07/06 21:02:19 UTC

qpid-dispatch git commit: NO-JIRA: Demote "aborting link" log messages from NOTICE TO DEBUG

Repository: qpid-dispatch
Updated Branches:
  refs/heads/master fb5fe90ca -> 0e62bd820


NO-JIRA: Demote "aborting link" log messages from NOTICE TO DEBUG

It is common (and not an error) for clients to close a connection or session
without closing all the contained links first so this is not an important or
even unusual event.


Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/0e62bd82
Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/0e62bd82
Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/0e62bd82

Branch: refs/heads/master
Commit: 0e62bd8208207d70f1f827fce4674b8ca9aacd34
Parents: fb5fe90
Author: Alan Conway <ac...@redhat.com>
Authored: Mon Jun 12 10:54:33 2017 -0400
Committer: Alan Conway <ac...@redhat.com>
Committed: Thu Jul 6 17:01:53 2017 -0400

----------------------------------------------------------------------
 src/container.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/0e62bd82/src/container.c
----------------------------------------------------------------------
diff --git a/src/container.c b/src/container.c
index 3add3ac..3c3bc49 100644
--- a/src/container.c
+++ b/src/container.c
@@ -274,7 +274,7 @@ static void close_links(qd_container_t *container, pn_connection_t *conn, bool p
         if (qd_link && qd_link->node) {
             qd_node_t *node = qd_link->node;
             if (print_log)
-                qd_log(container->log_source, QD_LOG_NOTICE,
+                qd_log(container->log_source, QD_LOG_DEBUG,
                        "Aborting link '%s' due to parent connection end",
                        pn_link_name(pn_link));
             node->ntype->link_detach_handler(node->context, qd_link, QD_LOST);
@@ -413,7 +413,7 @@ void qd_container_handle_event(qd_container_t *container, pn_event_t *event)
                                     assert(qd_conn->n_senders >= 0);
                                 }
                             }
-                            qd_log(container->log_source, QD_LOG_NOTICE,
+                            qd_log(container->log_source, QD_LOG_DEBUG,
                                    "Aborting link '%s' due to parent session end",
                                    pn_link_name(pn_link));
                             qd_link->node->ntype->link_detach_handler(qd_link->node->context,


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