diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-11-25 01:57:29 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-11-25 01:57:29 +0000 |
commit | cb12efdd0583ae40dff80f6a4559fd4d2d23a68a (patch) | |
tree | c285c304760551a8e87cba15bb4c52fb0b567e05 /libjava/java/util/logging | |
parent | e25acbaced071b094e59a54ed0ed62d6a778bbc6 (diff) | |
download | gcc-cb12efdd0583ae40dff80f6a4559fd4d2d23a68a.tar.gz |
* Makefile.in: Rebuilt.
* Makefile.am (propdir): New macro.
(install-data-local): Install logging.properties.
(core_java_source_files): Added java.util.logging.*.
* java/util/logging/logging.properties: New file.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@73907 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/util/logging')
-rw-r--r-- | libjava/java/util/logging/logging.properties | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libjava/java/util/logging/logging.properties b/libjava/java/util/logging/logging.properties new file mode 100644 index 00000000000..3104af3acab --- /dev/null +++ b/libjava/java/util/logging/logging.properties @@ -0,0 +1,8 @@ +# Default logging properties. +# See javadoc in java.util.logging.LogManager to information on +# overriding these settings. Most of the defaults are compiled in, so +# this file is fairly minimal. + +# Send log records to System.err, default to INFO per documentation. +handlers = java.util.logging.ConsoleHandler +.level = INFO |