9a30a2a12627db09cc92eeaa4a4d1b83ad3d2af7
[aaf/cadi.git] / aaf / src / test / resources / logging.props
1 | ############################################################ 
2 # Default Logging Configuration File 
3
4 # You can use a different file by specifying a filename 
5 # with the java.util.logging.config.file system property. 
6 # For example java -Djava.util.logging.config.file=myfile 
7 ############################################################ 
8
9 ############################################################ 
10 # Global properties 
11 ############################################################ 
12
13 # "handlers" specifies a comma separated list of log Handler 
14 # classes. These handlers will be installed during VM startup. 
15 # Note that these classes must be on the system classpath. 
16 # By default we only configure a ConsoleHandler, which will only 
17 # show messages at the INFO and above levels. 
18 handlers=java.util.logging.FileHandler 
19
20 # Default global logging level. 
21 # This specifies which kinds of events are logged across 
22 # all loggers. For any given facility this global level 
23 # can be overriden by a facility specific level 
24 # Note that the ConsoleHandler also has a separate level 
25 # setting to limit messages printed to the console. 
26 .level=INFO 
27
28 ############################################################ 
29 # Handler specific properties. 
30 # Describes specific configuration info for Handlers. 
31 ############################################################ 
32 java.util.logging.FileHandler.properties=autoFlush,fileName,dataPattern,name 
33 java.util.logging.FileHandler.fileName=%h/.aaf/dme2.log 
34 java.util.logging.FileHandlerFileHandler.autoFlush=true 
35 java.util.logging.FileHandlerFileHandler.name=DailyRollingFileHandler 
36 java.util.logging.FileHandlerFileHandler.datePattern='.'yyyy-MM-dd 
37 com.att.aft.dme2.events.server.summary=INFO
38