diff options
author | Damian Minkov <damencho@jitsi.org> | 2008-08-21 14:17:10 +0000 |
---|---|---|
committer | Damian Minkov <damencho@jitsi.org> | 2008-08-21 14:17:10 +0000 |
commit | f0c46adb22b1ca165ea26e6a3f9a5620ad77bb2f (patch) | |
tree | 81af1c931424a046f33b619dc0b9d186266b3541 /lib/logging.properties | |
parent | fe56e3e06259edf5c43c38e6097189b48e1b859e (diff) | |
download | jitsi-f0c46adb22b1ca165ea26e6a3f9a5620ad77bb2f.zip jitsi-f0c46adb22b1ca165ea26e6a3f9a5620ad77bb2f.tar.gz jitsi-f0c46adb22b1ca165ea26e6a3f9a5620ad77bb2f.tar.bz2 |
Move custom FileHandler to util package and add util classes to system classloader under windows.
Diffstat (limited to 'lib/logging.properties')
-rw-r--r-- | lib/logging.properties | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/lib/logging.properties b/lib/logging.properties index cc4046a..7162d2e 100644 --- a/lib/logging.properties +++ b/lib/logging.properties @@ -1,5 +1,5 @@ ############################################################ -# Default Logging Configuration File +# Default Logging Configuration File # # You can use a different file by specifying a filename # with the java.util.logging.config.file system property. @@ -7,7 +7,7 @@ ############################################################ ############################################################ -# Global properties +# Global properties ############################################################ # "handlers" specifies a comma separated list of log Handler @@ -15,7 +15,7 @@ # 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= net.java.sip.communicator.launcher.logging.FileHandler, java.util.logging.ConsoleHandler +handlers= net.java.sip.communicator.util.FileHandler, java.util.logging.ConsoleHandler # To also add the FileHandler, use the following line instead. @@ -35,11 +35,10 @@ handlers= net.java.sip.communicator.launcher.logging.FileHandler, java.util.logg ############################################################ # default file output is in user's home directory. -net.java.sip.communicator.launcher.logging.FileHandler.limit = 5000000 -net.java.sip.communicator.launcher.logging.FileHandler.count = 1 -net.java.sip.communicator.launcher.logging.FileHandler.formatter = net.java.sip.communicator.util.ScLogFormatter -net.java.sip.communicator.launcher.logging.FileHandler.level = INFO - +net.java.sip.communicator.util.FileHandler.limit = 5000000 +net.java.sip.communicator.util.FileHandler.count = 1 +net.java.sip.communicator.util.FileHandler.formatter = net.java.sip.communicator.util.ScLogFormatter +net.java.sip.communicator.util.FileHandler.level = FINEST |