Modify groupId for ems driver
[vfc/nfvo/driver/ems.git] / ems / boco / cfg / log4j.properties
1 # Copyright 2017 BOCO Corporation.  CMCC Technologies Co., Ltd
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 #
15
16 log4j.rootCategory=debug,R,E,stdout
17
18 #### \u7b2c\u4e00\u4e2a appender\u5c06log\u5199\u5230\u5c4f\u5e55
19 log4j.appender.stdout=org.apache.log4j.ConsoleAppender
20 log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
21 log4j.appender.stdout.layout.ConversionPattern=[%p] [%d] [%c] - [%m]%n
22 log4j.appender.stdout.Threshold=INFO
23
24 #### \u7b2c\u4e8c\u4e2a appender \u5c06\u5168\u90e8log\u5199\u5230\u6587\u4ef6
25 log4j.appender.R=org.apache.log4j.RollingFileAppender
26 log4j.appender.R.File=../log/monitor.log
27 log4j.appender.R.MaxFileSize=20MB
28 log4j.appender.R.MaxBackupIndex=50
29 log4j.appender.R.layout=org.apache.log4j.PatternLayout
30 log4j.appender.R.layout.ConversionPattern=[%p] [%d] [%t] [%c] - [%m]%n
31 log4j.appender.R.Threshold=INFO
32
33 #### \u7b2c\u4e09\u4e2a appender \u5c06\u9519\u8beflog\u5199\u5230\u6587\u4ef6
34 log4j.appender.E=org.apache.log4j.RollingFileAppender
35 log4j.appender.E.File=../log/error.log
36 log4j.appender.E.MaxFileSize=20MB
37 log4j.appender.E.MaxBackupIndex=10
38 log4j.appender.E.layout=org.apache.log4j.PatternLayout
39 log4j.appender.E.layout.ConversionPattern=[%p] [%d] [%t] [%c] - [%m]%n
40 log4j.appender.E.Threshold=ERROR