@Override
protected boolean applyUpdate(final OperationContext context, final String attributeName, final String addressName, final ModelNode value, final LogContextConfiguration logContextConfiguration) throws OperationFailedException {
final String loggerName = getLogManagerLoggerName(addressName);
if (logContextConfiguration.getLoggerNames().contains(loggerName)) {
final LoggerConfiguration configuration = logContextConfiguration.getLoggerConfiguration(loggerName);
if (LEVEL.getName().equals(attributeName)) {
handleProperty(LEVEL, context, value, configuration, false);
} else if (FILTER.getName().equals(attributeName)) {
// Filter should be replaced by the filter-spec in the super class
handleProperty(FILTER_SPEC, context, value, configuration, false);