Skip to content

Commit f0bb017

Browse files
modifications for log chatter
1 parent 1fbd1b9 commit f0bb017

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

core/src/main/java/oracle/weblogic/deploy/aliases/VersionUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ public static String[] getLowerAndUpperVersionStrings(String range) throws Versi
341341
LOGGER.throwing(CLASS, METHOD, ve);
342342
throw ve;
343343
}
344-
LOGGER.exiting(CLASS, METHOD, result);
344+
LOGGER.exiting(CLASS, METHOD, Arrays.toString(result));
345345
return result;
346346
}
347347

core/src/main/python/wlsdeploy/tool/util/filter_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from wlsdeploy.util.model_translator import FileToPython
1212

1313
__class_name = 'filter_helper'
14-
__logger = PlatformLogger('wlsdeploy.wlst')
14+
__logger = PlatformLogger('wlsdeploy.tool.util')
1515
__filter_file_location = os.path.join(os.environ.get('WLSDEPLOY_HOME'), 'lib', 'model_filters.json')
1616

1717
__id_filter_map = {

installer/src/main/etc/logging.properties

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,13 @@
22
# The Universal Permissive License (UPL), Version 1.0
33
#
44
wlsdeploy.level=FINER
5-
wlsdeploy.create.level=FINEST
6-
wlsdeploy.validate.level=FINEST
5+
6+
wlsdeploy.create.level=FINER
7+
wlsdeploy.deploy.level=FINER
8+
wlsdeploy.discover.level=FINER
9+
wlsdeploy.update.level=FINER
10+
11+
wlsdeploy.aliases.level=FINE
12+
wlsdeploy.util.level=FINER
13+
wlsdeploy.versions.level=FINE
14+
wlsdeploy.wlst.level=FINER

0 commit comments

Comments
 (0)