diff options
author | Sanchez, Gabriel (gs882h) <gabriel.sanchez@amdocs.com> | 2018-06-04 16:04:04 +0100 |
---|---|---|
committer | Sanchez, Gabriel (gs882h) <gabriel.sanchez@amdocs.com> | 2018-06-04 16:08:53 +0100 |
commit | d4e297058fbd58b7164a69f506a0c0af0274ed48 (patch) | |
tree | f0ec87741d25730925411a51f5d871f32834c660 /bundleconfig-local | |
parent | 33bec1f4e3b0c824555e23b3681450709822ef76 (diff) |
Fix logDir in logback.xml file
Change logDir value to APP_HOME/logs
Issue-ID: AAI-1199
Change-Id: I4fc10a6ab422be50aaf3333b67f404e2c1589f75
Signed-off-by: Sanchez, Gabriel (gs882h) <gabriel.sanchez@amdocs.com>
Diffstat (limited to 'bundleconfig-local')
-rw-r--r-- | bundleconfig-local/etc/logback.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bundleconfig-local/etc/logback.xml b/bundleconfig-local/etc/logback.xml index a04d44c..f49b222 100644 --- a/bundleconfig-local/etc/logback.xml +++ b/bundleconfig-local/etc/logback.xml @@ -2,7 +2,7 @@ <!--<jmxConfigurator /> --> <!-- directory path for all other type logs --> - <property name="logDir" value="/var/log/onap" /> + <property name="logDir" value="${APP_HOME}/logs" /> <!-- specify the component name @@ -145,8 +145,8 @@ <logger name="org.springframework.web" level="WARN" /> <logger name="com.blog.spring.jms" level="WARN" /> - <!-- ARMAdapter Service loggers --> - <logger name="com.amdocs.aai.armadapter" level="INFO" /> + <!-- CRUD Service loggers --> + <logger name="org.onap.crud" level="INFO" /> <!-- Other Loggers that may help troubleshoot --> <logger name="net.sf" level="WARN" /> |