Rolling back NightlyBuildID.
[sip-communicator.git] / lib / logging.properties
blob4f5a7672b8af37fb533563626fec4595d3370cba
1 ############################################################
2 #       Default Logging Configuration File
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 ############################################################
9 ############################################################
10 #       Global properties
11 ############################################################
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, java.util.logging.ConsoleHandler
21 # To also add the FileHandler, use the following line instead.
22 #handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler
24 # Default global logging level.
25 # This specifies which kinds of events are logged across
26 # all loggers.  For any given facility this global level
27 # can be overriden by a facility specific level
28 # Note that the ConsoleHandler also has a separate level
29 # setting to limit messages printed to the console.
30 .level= INFO
32 ############################################################
33 # Handler specific properties.
34 # Describes specific configuration info for Handlers.
35 ############################################################
37 # default file output is in user's home directory.
38 java.util.logging.FileHandler.pattern = ./log/sip-communicator%u.log
39 java.util.logging.FileHandler.limit = 5000000
40 java.util.logging.FileHandler.count = 1
41 java.util.logging.FileHandler.formatter = net.java.sip.communicator.util.ScLogFormatter
42 java.util.logging.FileHandler.level = FINEST
47 # Limit the message that are printed on the console to FINEST and above (all).
48 java.util.logging.ConsoleHandler.level = FINEST
49 java.util.logging.ConsoleHandler.formatter = net.java.sip.communicator.util.ScLogFormatter
52 ############################################################
53 # Facility specific properties.
54 # Provides extra control for each logger.
55 ############################################################
57 # We don't want trace logs from joscar and joustsim
58 net.kano.level = INFO
60 ymsg.network.level = FINEST
62 # We don't want trace logs from java-jml
63 net.sf.cindy.impl.level = INFO
65 # But we want everything coming from the sip-comm
66 net.java.sip.communicator.impl.level = INFO
67 net.java.sip.communicator.impl.protocol.level = FINEST
68 net.java.sip.communicator.impl.shutdown.level = FINEST
69 net.java.sip.communicator.impl.contactlist.level = FINEST
70 net.java.sip.communicator.slick.level = FINEST
71 net.java.sip.communicator.impl.level = FINEST
72 net.java.sip.communicator.service.level = FINEST
73 net.java.sip.communicator.util.level = FINEST
74 net.java.sip.communicator.service.configuration.level = FINEST
75 net.java.sip.communicator.impl.configuration.level = FINEST
76 net.java.sip.communicator.impl.history.level = INFO
77 net.java.sip.communicator.impl.gui.level = INFO
78 net.java.sip.communicator.impl.protocol.zeroconf.jmdns.level=INFO
80 # For example, set the com.xyz.foo logger to only log SEVERE
81 # messages:
82 com.xyz.foo.level = SEVERE
83 sun.awt.level = INFO
84 java.awt.level = INFO
85 javax.swing.level = INFO
87 fmj.level=FINE