From 554fd8c5195424bdbcabf5de30fdc183aba391bd Mon Sep 17 00:00:00 2001 From: upstream source tree Date: Sun, 15 Mar 2015 20:14:05 -0400 Subject: obtained gcc-4.6.4.tar.bz2 from upstream website; verified gcc-4.6.4.tar.bz2.sig; imported gcc-4.6.4 source tree from verified upstream tarball. downloading a git-generated archive based on the 'upstream' tag should provide you with a source tree that is binary identical to the one extracted from the above tarball. if you have obtained the source via the command 'git clone', however, do note that line-endings of files in your working directory might differ from line-endings of the respective files in the upstream repository. --- .../resource/java/util/logging/logging.properties | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 libjava/classpath/resource/java/util/logging/logging.properties (limited to 'libjava/classpath/resource/java/util/logging/logging.properties') 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 000000000..e7aabf485 --- /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 -- cgit v1.2.3