You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by gm...@apache.org on 2017/03/22 17:28:15 UTC

qpid-dispatch git commit: DISPATCH-732 - Added log modules used in code but missing from schema

Repository: qpid-dispatch
Updated Branches:
  refs/heads/master 801b5908a -> 4284ffb12


DISPATCH-732 - Added log modules used in code but missing from schema


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

Branch: refs/heads/master
Commit: 4284ffb12f07a10d509d5339553a8115c07cb382
Parents: 801b590
Author: Ganesh Murthy <gm...@redhat.com>
Authored: Wed Mar 22 13:27:06 2017 -0400
Committer: Ganesh Murthy <gm...@redhat.com>
Committed: Wed Mar 22 13:27:06 2017 -0400

----------------------------------------------------------------------
 python/qpid_dispatch/management/qdrouter.json | 2 ++
 src/log.c                                     | 3 ---
 2 files changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/4284ffb1/python/qpid_dispatch/management/qdrouter.json
----------------------------------------------------------------------
diff --git a/python/qpid_dispatch/management/qdrouter.json b/python/qpid_dispatch/management/qdrouter.json
index 8282dd8..b6ec3f2 100644
--- a/python/qpid_dispatch/management/qdrouter.json
+++ b/python/qpid_dispatch/management/qdrouter.json
@@ -871,6 +871,8 @@
                         "ERROR",
                         "POLICY",
                         "HTTP",
+                        "CONN_MGR",
+                        "PYTHON",
                         "DEFAULT"
                     ],
                     "required": true,

http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/4284ffb1/src/log.c
----------------------------------------------------------------------
diff --git a/src/log.c b/src/log.c
index 812e848..896d314 100644
--- a/src/log.c
+++ b/src/log.c
@@ -41,7 +41,6 @@
 const char *QD_LOG_STATS_TYPE = "logStats";
 
 static qd_log_source_t      *default_log_source=0;
-static qd_log_source_t      *logging_log_source=0;
 
 int qd_log_max_len() { return TEXT_MAX; }
 
@@ -88,7 +87,6 @@ static const char* SINK_STDOUT = "stdout";
 static const char* SINK_STDERR = "stderr";
 static const char* SINK_SYSLOG = "syslog";
 static const char* SOURCE_DEFAULT = "DEFAULT";
-static const char* SOURCE_LOGGING = "LOGGING";
 
 static log_sink_t* find_log_sink_lh(const char* name) {
     log_sink_t* sink = DEQ_HEAD(sink_list);
@@ -485,7 +483,6 @@ void qd_log_initialize(void)
     default_log_source->timestamp = true;
     default_log_source->source = 0;
     default_log_source->sink = log_sink_lh(SINK_STDERR);
-    logging_log_source = qd_log_source(SOURCE_LOGGING);
 }
 
 


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