Create wt-odlux directory
[ccsdk/features.git] / sdnr / wt-odlux / helpserver / provider / src / test / resources / simplelogger.properties
1 #
2 # ============LICENSE_START=======================================================
3 # ONAP : ccsdk features
4 # ================================================================================
5 # Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
6 # ================================================================================
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 # ============LICENSE_END=======================================================
19 #
20 #
21
22 # SLF4J's SimpleLogger configuration file
23 # Simple implementation of Logger that sends all enabled log messages, for all defined loggers, to System.err.
24
25 # Default logging detail level for all instances of SimpleLogger.
26 # Must be one of ("trace", "debug", "info", "warn", or "error").
27 # If not specified, defaults to "info".
28 org.slf4j.simpleLogger.defaultLogLevel=trace
29
30 # Logging detail level for a SimpleLogger instance named "xxx.yyy.zzz".
31 # Must be one of ("trace", "debug", "info", "warn", or "error").
32 # If not specified, the default logging detail level is used.
33 # org.slf4j.simpleLogger.log.xxx.yyy=debug
34 org.slf4j.simpleLogger.log.org.onap.ccsdk.features.sdnr.wt.devicemanager=debug
35 org.slf4j.simpleLogger.log.org.onap.ccsdk.features.sdnr.wt.devicemanager.base.internalTypes.Resources=info
36 org.slf4j.simpleLogger.log.org.onap.ccsdk.features.sdnr.wt.devicemanager.base.netconf.container=trace
37
38 # Set to true if you want the current date and time to be included in output messages.
39 # Default is false, and will output the number of milliseconds elapsed since startup.
40 #org.slf4j.simpleLogger.showDateTime=false
41
42 # The date and time format to be used in the output messages.
43 # The pattern describing the date and time format is the same that is used in java.text.SimpleDateFormat.
44 # If the format is not specified or is invalid, the default format is used.
45 # The default format is yyyy-MM-dd HH:mm:ss:SSS Z.
46 #org.slf4j.simpleLogger.dateTimeFormat=yyyy-MM-dd HH:mm:ss:SSS Z
47
48 # Set to true if you want to output the current thread name.
49 # Defaults to true.
50 #org.slf4j.simpleLogger.showThreadName=true
51
52 # Set to true if you want the Logger instance name to be included in output messages.
53 # Defaults to true.
54 #org.slf4j.simpleLogger.showLogName=true
55
56 # Set to true if you want the last component of the name to be included in output messages.
57 # Defaults to false.
58 #org.slf4j.simpleLogger.showShortLogName=false