summaryrefslogtreecommitdiffstats
path: root/libjava/classpath/resource/java/util/logging/logging.properties
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2005-07-16 00:30:23 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2005-07-16 00:30:23 +0000
commitc8875fb97fc03779a5bba09872227b1d08e5d52a (patch)
treea0b991cf5866ae1d616639b906ac001811d74508 /libjava/classpath/resource/java/util/logging/logging.properties
parentc40c1730800ed292b6db39a83d592476fa59623c (diff)
downloadppe42-gcc-c8875fb97fc03779a5bba09872227b1d08e5d52a.tar.gz
ppe42-gcc-c8875fb97fc03779a5bba09872227b1d08e5d52a.zip
Initial revision
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102074 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/classpath/resource/java/util/logging/logging.properties')
-rw-r--r--libjava/classpath/resource/java/util/logging/logging.properties42
1 files changed, 42 insertions, 0 deletions
diff --git a/libjava/classpath/resource/java/util/logging/logging.properties b/libjava/classpath/resource/java/util/logging/logging.properties
new file mode 100644
index 00000000000..e7aabf485f6
--- /dev/null
+++ b/libjava/classpath/resource/java/util/logging/logging.properties
@@ -0,0 +1,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
OpenPOWER on IntegriCloud