]> gerrit.simantics Code Review - simantics/3d.git/blob - org.simantics.g3d/logging.properties
Renaming plug-ins.
[simantics/3d.git] / org.simantics.g3d / logging.properties
1 ############################################################\r
2 #       Default Logging Configuration File\r
3 #\r
4 # You can use a different file by specifying a filename\r
5 # with the java.util.logging.config.file system property.  \r
6 # For example java -Djava.util.logging.config.file=myfile\r
7 ############################################################\r
8 \r
9 ############################################################\r
10 #       Global properties\r
11 ############################################################\r
12 \r
13 # "handlers" specifies a comma separated list of log Handler \r
14 # classes.  These handlers will be installed during VM startup.\r
15 # Note that these classes must be on the system classpath.\r
16 # By default we only configure a ConsoleHandler, which will only\r
17 # show messages at the INFO and above levels.\r
18 handlers= java.util.logging.ConsoleHandler\r
19 \r
20 # To also add the FileHandler, use the following line instead.\r
21 #handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler\r
22 \r
23 # Default global logging level.\r
24 # This specifies which kinds of events are logged across\r
25 # all loggers.  For any given facility this global level\r
26 # can be overriden by a facility specific level\r
27 # Note that the ConsoleHandler also has a separate level\r
28 # setting to limit messages printed to the console.\r
29 .level= OFF\r
30 \r
31 ############################################################\r
32 # Handler specific properties.\r
33 # Describes specific configuration info for Handlers.\r
34 ############################################################\r
35 \r
36 # default file output is in user's home directory.\r
37 java.util.logging.FileHandler.pattern = %h/java%u.log\r
38 java.util.logging.FileHandler.limit = 50000\r
39 java.util.logging.FileHandler.count = 1\r
40 java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter\r
41 \r
42 # Limit the message that are printed on the console to INFO and above.\r
43 java.util.logging.ConsoleHandler.level = OFF\r
44 java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter\r
45 \r
46 \r
47 ############################################################\r
48 # Facility specific properties.\r
49 # Provides extra control for each logger.\r
50 ############################################################\r
51 \r
52 # For example, set the com.xyz.foo logger to only log SEVERE\r
53 # messages:\r
54 # com.xyz.foo.level = SEVERE\r