File: logging.properties

package info (click to toggle)
classpath 2%3A0.97.1-5%2Blenny1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 70,216 kB
  • ctags: 101,459
  • sloc: java: 618,509; ansic: 34,989; sh: 9,319; cpp: 8,745; makefile: 1,681; yacc: 654; perl: 460
file content (42 lines) | stat: -rw-r--r-- 1,437 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Logging Configuration
# ---------------------
# By setting properties in this file, you can change the behavior
# of the java.util.logging framework. Some examples are listed below.
#
#
# To change the logging threshold of all loggers to the value
# java.util.logging.Level.CONFIG, un-comment the following line:
#
# .level=CONFIG
#
#
# To change the logging threshold of all loggers in the "foo.bar"
# namespace to java.util.logging.Level.FINEST, un-comment the follwing
# line. This will also affect any children, such as "foo.bar.baz".
#
# foo.bar.level=FINEST
#
#
# To register a FileHandler for the "foo.bar" namespace and its
# children, un-comment the following line. By default, the FileHandler
# will write XML-formatted messages into a file "java0.log" in the
# user's home directory.
#
# foo.bar.handlers=java.util.logging.FileHandler
#
#
# To make a FileHandler use plain text instead of XML, and to place
# the log file into a different location (such as /tmp/myfile.log
# or /var/tmp/myfile.log), un-comment the following:
#
# java.util.logging.FileHandler.pattern=%t/myfile.log
# java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter
#
#
# Logging can be configured in many ways. For more information, please
# look at the documentation of the java.util.logging package.


# Send log records to System.err, default to INFO per documentation.
handlers = java.util.logging.ConsoleHandler
.level = INFO