From cb12efdd0583ae40dff80f6a4559fd4d2d23a68a Mon Sep 17 00:00:00 2001 From: tromey Date: Tue, 25 Nov 2003 01:57:29 +0000 Subject: * 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 --- libjava/java/util/logging/logging.properties | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 libjava/java/util/logging/logging.properties (limited to 'libjava/java/util/logging') 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 -- cgit v1.2.1