diff options
author | Mark Wielaard <mark@klomp.org> | 2004-09-13 16:43:12 +0000 |
---|---|---|
committer | Mark Wielaard <mark@klomp.org> | 2004-09-13 16:43:12 +0000 |
commit | 3776e05e2aefcc66d27d494845d662b6779a6cc7 (patch) | |
tree | 3ba87bf0c9e80d0c709333e86ba06d87ed4d31ba /resource | |
parent | 62a64372b984c645053c75b02df93a472eee5994 (diff) | |
download | classpath-3776e05e2aefcc66d27d494845d662b6779a6cc7.tar.gz |
* NEWS: Set release date.classpath-0_11-release
* configure.ac: Set version to 0.11. Add java/util/logging/Makefile.
* java/util/logging/logging.properties: Removed.
* resource/java/util/Makefile.am (SUBDIRS): Add logging.
* resource/java/util/logging/Makefile.am: Added.
* resource/java/util/logging/logging.properties: Added.
Diffstat (limited to 'resource')
-rw-r--r-- | resource/java/util/Makefile.am | 3 | ||||
-rw-r--r-- | resource/java/util/logging/Makefile.am | 4 | ||||
-rw-r--r-- | resource/java/util/logging/logging.properties | 42 |
3 files changed, 48 insertions, 1 deletions
diff --git a/resource/java/util/Makefile.am b/resource/java/util/Makefile.am index 8a1742d43..e433cbb81 100644 --- a/resource/java/util/Makefile.am +++ b/resource/java/util/Makefile.am @@ -1,5 +1,7 @@ ## used by automake to generate Makefile.in +SUBDIRS = logging + EXTRA_DIST = \ iso3166-a3.properties \ iso3166_de.properties \ @@ -10,4 +12,3 @@ iso639_de.properties \ iso639.properties \ iso639_fr.properties \ iso639_ga.properties - diff --git a/resource/java/util/logging/Makefile.am b/resource/java/util/logging/Makefile.am new file mode 100644 index 000000000..cacf80a84 --- /dev/null +++ b/resource/java/util/logging/Makefile.am @@ -0,0 +1,4 @@ +## used by automake to generate Makefile.in + +EXTRA_DIST = \ +logging.properties diff --git a/resource/java/util/logging/logging.properties b/resource/java/util/logging/logging.properties new file mode 100644 index 000000000..e7aabf485 --- /dev/null +++ b/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 |