
org.gradle.internal.logging.source.JavaUtilLoggingSystem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.internal.logging.source;
import org.gradle.api.logging.LogLevel;
import org.gradle.internal.logging.config.LoggingSourceSystem;
import org.slf4j.bridge.SLF4JBridgeHandler;
import java.util.HashMap;
import java.util.Map;
import java.util.logging.Level;
import java.util.logging.LogManager;
import java.util.logging.Logger;
/**
* A {@link LoggingSourceSystem} which configures JUL to route logging events to SLF4J.
*/
public class JavaUtilLoggingSystem implements LoggingSourceSystem {
private static final Map LOG_LEVEL_MAPPING = new HashMap();
// Gradle's log levels correspond to slf4j log levels
// as implemented in OutputEventListenerBackedLogger.
// These levels are mapped to java.util.logging.Levels
// corresponding to the mapping implemented in the
// SLF4JBridgeHandler which is installed by this logging system.
static {
LOG_LEVEL_MAPPING.put(LogLevel.DEBUG, Level.FINE);
LOG_LEVEL_MAPPING.put(LogLevel.INFO, Level.FINE);
LOG_LEVEL_MAPPING.put(LogLevel.LIFECYCLE, Level.FINE);
LOG_LEVEL_MAPPING.put(LogLevel.WARN, Level.FINE);
LOG_LEVEL_MAPPING.put(LogLevel.QUIET, Level.FINE);
LOG_LEVEL_MAPPING.put(LogLevel.ERROR, Level.FINE);
//LOG_LEVEL_MAPPING.put(LogLevel.INFO, Level.CONFIG);
//LOG_LEVEL_MAPPING.put(LogLevel.LIFECYCLE, Level.WARNING);
//LOG_LEVEL_MAPPING.put(LogLevel.WARN, Level.WARNING);
//LOG_LEVEL_MAPPING.put(LogLevel.QUIET, Level.SEVERE);
//LOG_LEVEL_MAPPING.put(LogLevel.ERROR, Level.SEVERE);
}
private final Logger logger;
private LogLevel requestedLevel;
private boolean installed;
public JavaUtilLoggingSystem() {
logger = Logger.getLogger("");
}
@Override
public Snapshot setLevel(LogLevel logLevel) {
Snapshot snapshot = snapshot();
if (logLevel != requestedLevel) {
requestedLevel = logLevel;
if (installed) {
logger.setLevel(LOG_LEVEL_MAPPING.get(logLevel));
}
}
return snapshot;
}
@Override
public Snapshot startCapture() {
Snapshot snapshot = snapshot();
install(LOG_LEVEL_MAPPING.get(requestedLevel));
return snapshot;
}
@Override
public void restore(Snapshot state) {
SnapshotImpl snapshot = (SnapshotImpl) state;
requestedLevel = snapshot.requestedLevel;
if (snapshot.installed) {
install(snapshot.javaUtilLevel);
} else {
uninstall(snapshot.javaUtilLevel);
}
}
@Override
public Snapshot snapshot() {
return new SnapshotImpl(installed, logger.getLevel(), requestedLevel);
}
private void uninstall(Level level) {
if (!installed) {
return;
}
LogManager.getLogManager().reset();
logger.setLevel(level);
installed = false;
}
private void install(Level level) {
if (installed) {
return;
}
LogManager.getLogManager().reset();
SLF4JBridgeHandler.install();
logger.setLevel(level);
installed = true;
}
private static class SnapshotImpl implements Snapshot {
private final boolean installed;
private final java.util.logging.Level javaUtilLevel;
private final LogLevel requestedLevel;
SnapshotImpl(boolean installed, Level javaUtilLevel, LogLevel requestedLevel) {
this.installed = installed;
this.javaUtilLevel = javaUtilLevel;
this.requestedLevel = requestedLevel;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy