Hi list,

I thought about merged logging.properties from libgcj. I wrote the attached 
patch for this.

Please review and comment. Any better ideas ?


Michael
Index: java/util/logging/Makefile.am
===================================================================
RCS file: /cvsroot/classpath/classpath/java/util/logging/Makefile.am,v
retrieving revision 1.2
diff -u -b -B -r1.2 Makefile.am
--- java/util/logging/Makefile.am	6 May 2002 21:10:53 -0000	1.2
+++ java/util/logging/Makefile.am	15 Jan 2004 21:05:28 -0000
@@ -2,6 +2,9 @@
 
 SUBDIRS = 
 
+propertiesdir = $(libdir)
+properties_DATA = logging.properties
+
 EXTRA_DIST = \
 ConsoleHandler.java \
 ErrorManager.java \
Index: java/util/logging/logging.properties
===================================================================
RCS file: java/util/logging/logging.properties
diff -N java/util/logging/logging.properties
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ java/util/logging/logging.properties	15 Jan 2004 21:05:28 -0000
@@ -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
_______________________________________________
Classpath mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/classpath

Reply via email to