mirror of
https://github.com/aljazceru/addons.git
synced 2026-02-17 02:44:25 +01:00
* Update HomeMatic OCCU to version 3.41.11 (#482) * Update HomeMatic OCCU to version 3.41.11 * Update CHANGELOG.md * Update config.json * Homematic OCCU: Fix write error when starting OCCU due to missing status directory. (#483) HMIPServer writes a lock file to /var/status/HMServerStarted, so create directory /var/status to prevent an exception that may confuse users. * Homematic OCCU: Supply custom log4j configuration for HMIPServer to log to console. (#484) This allows reading the HMIPServer log via the docker log file. The default configuration logs to file and syslog which is not accessible from outside the docker container. * Update CHANGELOG.md * Update CHANGELOG.md
27 lines
683 B
XML
27 lines
683 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
|
|
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">
|
|
|
|
<appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
|
|
<layout class="org.apache.log4j.PatternLayout">
|
|
<param name="ConversionPattern" value="%d [%p] %c{1} - %m%n" />
|
|
</layout>
|
|
</appender>
|
|
|
|
<category name="de.eq3">
|
|
<priority value="INFO" />
|
|
</category>
|
|
<category name="org">
|
|
<priority value="INFO" />
|
|
</category>
|
|
<category name="com">
|
|
<priority value="INFO" />
|
|
</category>
|
|
|
|
<root>
|
|
<priority value="ERROR" />
|
|
<appender-ref ref="CONSOLE" />
|
|
</root>
|
|
|
|
</log4j:configuration>
|