com.swirlds.logging.api.Level Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swirlds-logging Show documentation
Show all versions of swirlds-logging Show documentation
Swirlds is a software platform designed to build fully-distributed applications that harness the power of the cloud without servers. Now you can develop applications with fairness in decision making, speed, trust and reliability, at a fraction of the cost of traditional server-based platforms.
/*
* Copyright (C) 2023-2024 Hedera Hashgraph, LLC
*
* 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 com.swirlds.logging.api;
import com.swirlds.logging.api.extensions.emergency.EmergencyLogger;
import com.swirlds.logging.api.extensions.emergency.EmergencyLoggerProvider;
import edu.umd.cs.findbugs.annotations.NonNull;
/**
* The level of a log message
*/
public enum Level {
OFF(0),
ERROR(10),
WARN(20),
INFO(30),
DEBUG(40),
TRACE(100);
/**
* The emergency logger
*/
private static final EmergencyLogger EMERGENCY_LOGGER = EmergencyLoggerProvider.getEmergencyLogger();
/**
* The ordinal of the level
*/
private final int levelOrdinal;
/**
* Creates a new level with the given ordinal
*
* @param levelOrdinal the ordinal of the level
*/
Level(final int levelOrdinal) {
this.levelOrdinal = levelOrdinal;
}
/**
* Returns true if the logging of the given level is enabled
*
* @param level the level
* @return true if the logging of the given level is enabled
*/
public boolean enabledLoggingOfLevel(@NonNull final Level level) {
if (level == null) {
EMERGENCY_LOGGER.logNPE("level");
return true;
}
return this.levelOrdinal >= level.levelOrdinal && level.levelOrdinal > 0;
}
/**
* The method returns the name of the logging level as a string with a fixed size of 5 characters.
*
* e.g:
*
* - If the logging level is {@code OFF}, the method returns "OFF ".
*
- If the logging level is none of the predefined levels, the method returns " ".
*
* @return The name of the logging level with a fixed size.
*/
public String nameWithFixedSize() {
if (this == OFF) {
return "OFF ";
} else if (this == ERROR) {
return "ERROR";
} else if (this == WARN) {
return "WARN ";
} else if (this == INFO) {
return "INFO ";
} else if (this == DEBUG) {
return "DEBUG";
} else if (this == TRACE) {
return "TRACE";
} else {
return " ";
}
}
}