[kaffe] CVS kaffe (dalibor): Merged in logging.properties from GNU classpath

Kaffe CVS cvs-commits at kaffe.org
Wed Sep 15 07:35:35 PDT 2004


PatchSet 5171 
Date: 2004/09/15 14:30:22
Author: dalibor
Branch: HEAD
Tag: (none) 
Log:
Merged in logging.properties from GNU classpath

2004-09-15  Dalibor Topic  <robilad at kaffe.org>

        * libraries/javalib/logging.properties:
        New file. Taken from GNU Classpath.

        * libraries/javalib/Makefile.am.in:
        (jrelib_DATA) Added logging.properties.

        * libraries/javalib/Makefile.am,
        libraries/javalib/Makefile.in:
        Regenerated.

Members: 
	ChangeLog:1.2726->1.2727 
	libraries/javalib/Makefile.am:1.233->1.234 
	libraries/javalib/Makefile.am.in:1.23->1.24 
	libraries/javalib/Makefile.in:1.311->1.312 
	libraries/javalib/logging.properties:INITIAL->1.1 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.2726 kaffe/ChangeLog:1.2727
--- kaffe/ChangeLog:1.2726	Wed Sep 15 09:25:48 2004
+++ kaffe/ChangeLog	Wed Sep 15 14:30:22 2004
@@ -1,3 +1,15 @@
+2004-09-15  Dalibor Topic  <robilad at kaffe.org>
+
+        * libraries/javalib/logging.properties:
+	New file. Taken from GNU Classpath.
+
+        * libraries/javalib/Makefile.am.in:
+	(jrelib_DATA) Added logging.properties.
+
+        * libraries/javalib/Makefile.am,
+        libraries/javalib/Makefile.in:
+	Regenerated.
+
 2004-09-15  Guilhem Lavaux  <guilhem at kaffe.org>
 
 	* libraries/javalib/java/net/ServerSocket.java
Index: kaffe/libraries/javalib/Makefile.am
diff -u kaffe/libraries/javalib/Makefile.am:1.233 kaffe/libraries/javalib/Makefile.am:1.234
--- kaffe/libraries/javalib/Makefile.am:1.233	Tue Sep 14 20:17:29 2004
+++ kaffe/libraries/javalib/Makefile.am	Wed Sep 15 14:30:24 2004
@@ -48,7 +48,9 @@
 BOOTCLASSPATH=$(LIBDIR):$(srcdir)/Klasses.jar.bootstrap
 JAR=BOOTCLASSPATH=$(BOOTCLASSPATH) KAFFELIBRARYPATH=$(KAFFELIBRARYPATH) $(JAVA) kaffe.tools.jar.Jar
 
-jrelib_DATA = rt.jar
+jrelib_DATA = \
+	rt.jar \
+	logging.properties
 toolslib_DATA = kjc.jar
 
 Klasses_jar_SRCS = \
Index: kaffe/libraries/javalib/Makefile.am.in
diff -u kaffe/libraries/javalib/Makefile.am.in:1.23 kaffe/libraries/javalib/Makefile.am.in:1.24
--- kaffe/libraries/javalib/Makefile.am.in:1.23	Tue Sep 14 20:17:30 2004
+++ kaffe/libraries/javalib/Makefile.am.in	Wed Sep 15 14:30:24 2004
@@ -48,7 +48,9 @@
 BOOTCLASSPATH=$(LIBDIR):$(srcdir)/Klasses.jar.bootstrap
 JAR=BOOTCLASSPATH=$(BOOTCLASSPATH) KAFFELIBRARYPATH=$(KAFFELIBRARYPATH) $(JAVA) kaffe.tools.jar.Jar
 
-jrelib_DATA = rt.jar
+jrelib_DATA = \
+	rt.jar \
+	logging.properties
 toolslib_DATA = kjc.jar
 
 Klasses_jar_SRCS = \
Index: kaffe/libraries/javalib/Makefile.in
diff -u kaffe/libraries/javalib/Makefile.in:1.311 kaffe/libraries/javalib/Makefile.in:1.312
--- kaffe/libraries/javalib/Makefile.in:1.311	Tue Sep 14 20:17:30 2004
+++ kaffe/libraries/javalib/Makefile.in	Wed Sep 15 14:30:24 2004
@@ -387,7 +387,10 @@
 KAFFELIBRARYPATH = $(top_builddir)/libraries/clib/native/:$(top_builddir)/libraries/clib/io/:$(top_builddir)/libraries/clib/zip/:$(top_builddir)/libraries/clib/nio/:$(top_builddir)/libraries/clib/security/
 BOOTCLASSPATH = $(LIBDIR):$(srcdir)/Klasses.jar.bootstrap
 JAR = BOOTCLASSPATH=$(BOOTCLASSPATH) KAFFELIBRARYPATH=$(KAFFELIBRARYPATH) $(JAVA) kaffe.tools.jar.Jar
-jrelib_DATA = rt.jar
+jrelib_DATA = \
+	rt.jar \
+	logging.properties
+
 toolslib_DATA = kjc.jar
 Klasses_jar_SRCS = \
 	$(com_jcraft_jzlib_SRCS) \
===================================================================
Checking out kaffe/libraries/javalib/logging.properties
RCS:  /home/cvs/kaffe/kaffe/libraries/javalib/logging.properties,v
VERS: 1.1
***************
--- /dev/null	Sun Aug  4 19:57:58 2002
+++ kaffe/libraries/javalib/logging.properties	Wed Sep 15 14:35:35 2004
@@ -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




More information about the kaffe mailing list