aboutsummaryrefslogtreecommitdiffstats
path: root/resources/install/logging.properties
diff options
context:
space:
mode:
authorEmil Ivov <emcho@jitsi.org>2006-12-01 01:51:29 +0000
committerEmil Ivov <emcho@jitsi.org>2006-12-01 01:51:29 +0000
commit1e19f5286f0c17c8b51b5dc61b4fd40d9504d85f (patch)
tree0e6a78d755a0093ed224a9f05bec759c9687766b /resources/install/logging.properties
parent913f7bee5876f39d86a4a4b7253bcc75dfce4397 (diff)
downloadjitsi-1e19f5286f0c17c8b51b5dc61b4fd40d9504d85f.zip
jitsi-1e19f5286f0c17c8b51b5dc61b4fd40d9504d85f.tar.gz
jitsi-1e19f5286f0c17c8b51b5dc61b4fd40d9504d85f.tar.bz2
added an installation specific logging.properties file with a custom log level and log file location
Diffstat (limited to 'resources/install/logging.properties')
-rw-r--r--resources/install/logging.properties80
1 files changed, 80 insertions, 0 deletions
diff --git a/resources/install/logging.properties b/resources/install/logging.properties
new file mode 100644
index 0000000..e77a0cf
--- /dev/null
+++ b/resources/install/logging.properties
@@ -0,0 +1,80 @@
+############################################################
+# Default Logging Configuration File
+#
+# You can use a different file by specifying a filename
+# with the java.util.logging.config.file system property.
+# For example java -Djava.util.logging.config.file=myfile
+############################################################
+
+############################################################
+# Global properties
+############################################################
+
+# "handlers" specifies a comma separated list of log Handler
+# classes. These handlers will be installed during VM startup.
+# Note that these classes must be on the system classpath.
+# By default we only configure a ConsoleHandler, which will only
+# show messages at the INFO and above levels.
+handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler
+
+
+# To also add the FileHandler, use the following line instead.
+#handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler
+
+# Default global logging level.
+# This specifies which kinds of events are logged across
+# all loggers. For any given facility this global level
+# can be overriden by a facility specific level
+# Note that the ConsoleHandler also has a separate level
+# setting to limit messages printed to the console.
+.level= FINEST
+
+############################################################
+# Handler specific properties.
+# Describes specific configuration info for Handlers.
+############################################################
+
+# default file output is in user's home directory.
+java.util.logging.FileHandler.pattern = %h/.sip-communicator/log/sip-communicator%u.log
+java.util.logging.FileHandler.limit = 5000000
+java.util.logging.FileHandler.count = 1
+java.util.logging.FileHandler.formatter = net.java.sip.communicator.util.ScLogFormatter
+java.util.logging.FileHandler.level = FINEST
+
+
+
+
+# Limit the message that are printed on the console to FINEST and above (all).
+java.util.logging.ConsoleHandler.level = SEVERE
+java.util.logging.ConsoleHandler.formatter = net.java.sip.communicator.util.ScLogFormatter
+
+
+############################################################
+# Facility specific properties.
+# Provides extra control for each logger.
+############################################################
+
+# We don't want trace logs from joscar and joustsim
+net.kano.level = INFO
+
+# We don't want trace logs from java-jml
+net.sf.cindy.impl.level = INFO
+
+# But we want everything coming from the sip-comm
+net.java.sip.communicator.impl.level = INFO
+net.java.sip.communicator.impl.contactlist.level = FINEST
+net.java.sip.communicator.slick.level = FINEST
+net.java.sip.communicator.impl.level = FINEST
+net.java.sip.communicator.service.level = FINEST
+net.java.sip.communicator.util.level = FINEST
+net.java.sip.communicator.service.configuration.level = FINEST
+net.java.sip.communicator.impl.configuration.level = FINEST
+net.java.sip.communicator.impl.history.level = INFO
+net.java.sip.communicator.impl.gui.level = INFO
+
+# For example, set the com.xyz.foo logger to only log SEVERE
+# messages:
+com.xyz.foo.level = SEVERE
+sun.awt.level = INFO
+java.awt.level = INFO
+