From b55df9df46d3558c8e7502e39e9f878bed116e3b Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Thu, 6 Jul 2017 10:43:26 -0700 Subject: 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 --- darwin-x86/jre/lib/logging.properties | 59 +++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 darwin-x86/jre/lib/logging.properties (limited to 'darwin-x86/jre/lib/logging.properties') 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: +# : [] +# +# 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 -- cgit v1.2.3