summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Vinoski <vinoski@apache.org>2006-12-08 16:49:01 +0000
committerStephen Vinoski <vinoski@apache.org>2006-12-08 16:49:01 +0000
commit2913fbc1e85376a60e9139ecd7eefcf0d78e054c (patch)
treef49b788ee1ebc1a484946f4854ed4b06d8720bc4
parentad98b5022dba49b57ddac7d0a5730ba90032688b (diff)
downloadqpid-python-2913fbc1e85376a60e9139ecd7eefcf0d78e054c.tar.gz
make hard-coded logging level variable
The log4j logging level was hard-coded to WARN. This change picks up the level from the amqj.logging.level property, so it can be varied on the command line. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@484658 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--java/client/pom.xml5
1 files changed, 1 insertions, 4 deletions
diff --git a/java/client/pom.xml b/java/client/pom.xml
index 25372772af..2e53b1a965 100644
--- a/java/client/pom.xml
+++ b/java/client/pom.xml
@@ -38,7 +38,6 @@
<amqj.logging.level>warn</amqj.logging.level>
</properties>
-
<dependencies>
<dependency>
<groupId>org.apache.qpid</groupId>
@@ -49,7 +48,6 @@
<artifactId>qpid-broker</artifactId>
</dependency>
-
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
@@ -72,7 +70,6 @@
<artifactId>mina-filter-ssl</artifactId>
</dependency>
-
<dependency>
<groupId>jmscts</groupId>
<artifactId>jmscts</artifactId>
@@ -110,7 +107,7 @@
</property>
<property>
<name>amqj.logging.level</name>
- <value>WARN</value>
+ <value>${amqj.logging.level}</value>
</property>
<property>
<name>log4j.configuration</name>