blob: b0f7f6801c6cde5fe12923e261492692e5c44263 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.syncope.client.console.panels;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.List;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.core.LoggerContext;
import org.apache.logging.log4j.core.config.LoggerConfig;
import org.apache.syncope.common.lib.SyncopeConstants;
import org.apache.syncope.common.lib.log.LoggerTO;
import org.apache.syncope.common.lib.types.LoggerLevel;
import org.apache.wicket.PageReference;
public class ConsoleLogPanel extends AbstractLogsPanel<LoggerTO> {
private static final long serialVersionUID = -9165749229623482717L;
public ConsoleLogPanel(final String id, final PageReference pageReference) {
super(id, pageReference, ConsoleLoggerController.getLoggers());
}
@Override
protected void update(final LoggerTO loggerTO) {
ConsoleLoggerController.setLogLevel(loggerTO.getKey(), loggerTO.getLevel());
}
private static class ConsoleLoggerController implements Serializable {
private static final long serialVersionUID = -1550459341476431714L;
public static List<LoggerTO> getLoggers() {
LoggerContext ctx = (LoggerContext) LogManager.getContext(false);
List<LoggerTO> result = new ArrayList<>();
ctx.getConfiguration().getLoggers().values().forEach(logger -> {
String loggerName = LogManager.ROOT_LOGGER_NAME.equals(logger.getName())
? SyncopeConstants.ROOT_LOGGER : logger.getName();
if (logger.getLevel() != null) {
LoggerTO loggerTO = new LoggerTO();
loggerTO.setKey(loggerName);
loggerTO.setLevel(LoggerLevel.fromLevel(logger.getLevel()));
result.add(loggerTO);
}
});
result.sort(Comparator.comparing(LoggerTO::getKey));
return result;
}
public static void setLogLevel(final String name, final LoggerLevel level) {
LoggerContext ctx = (LoggerContext) LogManager.getContext(false);
LoggerConfig logConf = SyncopeConstants.ROOT_LOGGER.equals(name)
? ctx.getConfiguration().getLoggerConfig(LogManager.ROOT_LOGGER_NAME)
: ctx.getConfiguration().getLoggerConfig(name);
logConf.setLevel(level.getLevel());
ctx.updateLoggers();
}
}
}