This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository tomcat8.
commit 40cafbab43f91131e4ca85b6e1eefac22cd9c9a2 Author: Emmanuel Bourg <[email protected]> Date: Thu Dec 1 17:52:04 2016 +0100 Use AsyncFileHandler instead of FileHandler for the log files --- debian/changelog | 1 + debian/logging.properties | 18 +++++++++--------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/debian/changelog b/debian/changelog index ddc9952..9ad8722 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,6 +11,7 @@ tomcat8 (8.5.8-2) UNRELEASED; urgency=medium of catalina.out (Closes: #843135) * Changed the home directory for the tomcat8 user from /usr/share/tomcat8 to /var/lib/tomcat8 (Closes: #833261) + * Use AsyncFileHandler instead of FileHandler for the log files * Set the proper permissions for /etc/tomcat8/jaspic-providers.xml * Install the new library jaspic-api.jar * Install the Maven artifacts for tomcat-storeconfig diff --git a/debian/logging.properties b/debian/logging.properties index 6eeb181..7d27e05 100644 --- a/debian/logging.properties +++ b/debian/logging.properties @@ -13,22 +13,22 @@ # See the License for the specific language governing permissions and # limitations under the License. -handlers = 1catalina.org.apache.juli.FileHandler, 2localhost.org.apache.juli.FileHandler, java.util.logging.ConsoleHandler +handlers = 1catalina.org.apache.juli.AsyncFileHandler, 2localhost.org.apache.juli.AsyncFileHandler, java.util.logging.ConsoleHandler -.handlers = 1catalina.org.apache.juli.FileHandler, java.util.logging.ConsoleHandler +.handlers = 1catalina.org.apache.juli.AsyncFileHandler, java.util.logging.ConsoleHandler ############################################################ # Handler specific properties. # Describes specific configuration info for Handlers. ############################################################ -1catalina.org.apache.juli.FileHandler.level = FINE -1catalina.org.apache.juli.FileHandler.directory = ${catalina.base}/logs -1catalina.org.apache.juli.FileHandler.prefix = catalina. +1catalina.org.apache.juli.AsyncFileHandler.level = FINE +1catalina.org.apache.juli.AsyncFileHandler.directory = ${catalina.base}/logs +1catalina.org.apache.juli.AsyncFileHandler.prefix = catalina. -2localhost.org.apache.juli.FileHandler.level = FINE -2localhost.org.apache.juli.FileHandler.directory = ${catalina.base}/logs -2localhost.org.apache.juli.FileHandler.prefix = localhost. +2localhost.org.apache.juli.AsyncFileHandler.level = FINE +2localhost.org.apache.juli.AsyncFileHandler.directory = ${catalina.base}/logs +2localhost.org.apache.juli.AsyncFileHandler.prefix = localhost. java.util.logging.ConsoleHandler.level = FINE java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter @@ -39,7 +39,7 @@ java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter ############################################################ org.apache.catalina.core.ContainerBase.[Catalina].[localhost].level = INFO -org.apache.catalina.core.ContainerBase.[Catalina].[localhost].handlers = 2localhost.org.apache.juli.FileHandler +org.apache.catalina.core.ContainerBase.[Catalina].[localhost].handlers = 2localhost.org.apache.juli.AsyncFileHandler # For example, set the com.xyz.foo logger to only log SEVERE # messages: -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/tomcat8.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

