summaryrefslogtreecommitdiff
path: root/darwin-x86/jre/lib/logging.properties
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2017-07-06 10:43:26 -0700
committerColin Cross <ccross@android.com>2017-07-07 13:17:35 -0700
commitb55df9df46d3558c8e7502e39e9f878bed116e3b (patch)
treedd6339c8278b3f04696c29cc6e0e41e19fe14930 /darwin-x86/jre/lib/logging.properties
parent658466ed341c32b08adb6e88e03da15ec7bd9e08 (diff)
downloadjdk8-b55df9df46d3558c8e7502e39e9f878bed116e3b.tar.gz
Add JDK 1.8.0_152-android-4163371-1 from ab/4163371
Add a prebuilt JDK built on the build servers (ab/openjdk) using source from external/jetbrains/jdk8u* in order to make builds more hermetic. A future CL will make the platform build use these prebuilts instead of whatever JDK binaries are found in the path, after which platform developers will no longer need to download and install a separate JDK. All platform developers will be using the same version of the JDK, and we can patch the JDK to fix bugs that affect building the platform as necessary. Test: m -j checkbuild with https://android-review.googlesource.com/#/c/428021/ Bug: 62956999 Change-Id: I527d9274022f5f84a39fd54fe50c027a63790796
Diffstat (limited to 'darwin-x86/jre/lib/logging.properties')
-rw-r--r--darwin-x86/jre/lib/logging.properties59
1 files changed, 59 insertions, 0 deletions
diff --git a/darwin-x86/jre/lib/logging.properties b/darwin-x86/jre/lib/logging.properties
new file mode 100644
index 0000000..65cf1b1
--- /dev/null
+++ b/darwin-x86/jre/lib/logging.properties
@@ -0,0 +1,59 @@
+############################################################
+# Default Logging Configuration File
+#
+# You can use a different file by specifying a filename
+# with the java.util.logging.config.file system property.
+# For example java -Djava.util.logging.config.file=myfile
+############################################################
+
+############################################################
+# Global properties
+############################################################
+
+# "handlers" specifies a comma separated list of log Handler
+# classes. These handlers will be installed during VM startup.
+# Note that these classes must be on the system classpath.
+# By default we only configure a ConsoleHandler, which will only
+# show messages at the INFO and above levels.
+handlers= java.util.logging.ConsoleHandler
+
+# To also add the FileHandler, use the following line instead.
+#handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler
+
+# Default global logging level.
+# This specifies which kinds of events are logged across
+# all loggers. For any given facility this global level
+# can be overriden by a facility specific level
+# Note that the ConsoleHandler also has a separate level
+# setting to limit messages printed to the console.
+.level= INFO
+
+############################################################
+# Handler specific properties.
+# Describes specific configuration info for Handlers.
+############################################################
+
+# default file output is in user's home directory.
+java.util.logging.FileHandler.pattern = %h/java%u.log
+java.util.logging.FileHandler.limit = 50000
+java.util.logging.FileHandler.count = 1
+java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
+
+# Limit the message that are printed on the console to INFO and above.
+java.util.logging.ConsoleHandler.level = INFO
+java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
+
+# Example to customize the SimpleFormatter output format
+# to print one-line log message like this:
+# <level>: <log message> [<date/time>]
+#
+# java.util.logging.SimpleFormatter.format=%4$s: %5$s [%1$tc]%n
+
+############################################################
+# Facility specific properties.
+# Provides extra control for each logger.
+############################################################
+
+# For example, set the com.xyz.foo logger to only log SEVERE
+# messages:
+com.xyz.foo.level = SEVERE