com.gemstone.gemfire.internal.GemFireLevel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gemfire-core Show documentation
Show all versions of gemfire-core Show documentation
SnappyData store based off Pivotal GemFireXD
/*
* Copyright (c) 2010-2015 Pivotal Software, Inc. All rights reserved.
*
* 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. See accompanying
* LICENSE file.
*/
package com.gemstone.gemfire.internal;
import com.gemstone.gemfire.i18n.LogWriterI18n;
import com.gemstone.gemfire.internal.i18n.LocalizedStrings;
import java.util.logging.*;
/**
* Extension that adds ERROR to the standard JDK logging level class.
*/
public class GemFireLevel extends Level {
private static final long serialVersionUID = -8123818329485173242L;
/**
* ERROR is a message level indicating a problem.
* Unlike WARNING its not a potential problem.
* Unlike SEVERE its not terminal.
*
* In general ERROR messages should describe events that are of
* considerable importance but will not prevent program
* execution. They should be reasonably intelligible to end users
* and to system administrators. This level is initialized to 950.
*/
public static final Level ERROR = new GemFireLevel("error", LogWriterImpl.ERROR_LEVEL);
public static Level create(int code) {
switch (code) {
case LogWriterImpl.ALL_LEVEL: return ALL;
case LogWriterImpl.FINEST_LEVEL: return FINEST;
case LogWriterImpl.FINER_LEVEL: return FINER;
case LogWriterImpl.FINE_LEVEL: return FINE;
case LogWriterImpl.CONFIG_LEVEL: return CONFIG;
case LogWriterImpl.INFO_LEVEL: return INFO;
case LogWriterImpl.WARNING_LEVEL: return WARNING;
case LogWriterImpl.ERROR_LEVEL: return ERROR;
case LogWriterImpl.SEVERE_LEVEL: return SEVERE;
case LogWriterImpl.NONE_LEVEL: return OFF;
default:
throw new IllegalArgumentException(LocalizedStrings.GemFireLevel_UNEXPECTED_LEVEL_CODE_0.toLocalizedString(Integer.valueOf(code)));
}
}
public static Level create(LogWriterI18n log) {
if (log.finestEnabled()) return FINEST;
if (log.finerEnabled()) return FINER;
if (log.fineEnabled()) return FINE;
if (log.configEnabled()) return CONFIG;
if (log.infoEnabled()) return INFO;
if (log.warningEnabled()) return WARNING;
if (log.errorEnabled()) return ERROR;
if (log.severeEnabled()) return SEVERE;
return OFF;
}
private GemFireLevel(String name, int code) {
super(name, code);
}
protected Object readResolve() {
return create(this.intValue());
}
}