Skip to content

Commit

Permalink
Merge pull request openhab#2759 from openhab/fix-2747
Browse files Browse the repository at this point in the history
This fixes openhab#2747 - decreases severity of lib version logging and decr…
  • Loading branch information
kaikreuzer committed Jun 22, 2015
2 parents 8124e1d + 7b7249a commit 3a1be8e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public class KNXBinding extends AbstractBinding<KNXBindingProvider> implements
private boolean mKNXConnectionEstablished;

public void activate(ComponentContext componentContext) {
logger.info("Calimero library version {}", Settings.getLibraryVersion());
logger.debug("Calimero library version {}", Settings.getLibraryVersion());
logger.trace("KNXBinding: activating");
KNXConnection.addConnectionListener(this);
mKNXBusReaderScheduler.start();
Expand Down
12 changes: 7 additions & 5 deletions distribution/openhabhome/configurations/logback_debug.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,6 @@
<logger name="OSGi" level="WARN" />
<logger name="org.eclipse.jetty" level="WARN" />

<root level="INFO">
<appender-ref ref="FILE" />
<appender-ref ref="STDOUT" />
</root>

<logger name="org.openhab.io.dropbox" level="DEBUG" />

<!-- temporary workaround for https://github.com/openhab/jupnp/issues/9 -->
Expand All @@ -63,4 +58,11 @@
<!-- temporary workaround for https://bugs.eclipse.org/bugs/show_bug.cgi?id=402750 -->
<logger name="OSGi" level="OFF" />

<logger name="tuwien.auto.calimero" level="WARN" />

<root level="INFO">
<appender-ref ref="FILE" />
<appender-ref ref="STDOUT" />
</root>

</configuration>

0 comments on commit 3a1be8e

Please sign in to comment.