All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.ru.pocketbyte.hydra.log.LogLevel.kt Maven / Gradle / Ivy

The newest version!
/*
 * Copyright © 2019 Denis Shurygin. All rights reserved.
 * Licensed under the Apache License, Version 2.0
 */

package ru.pocketbyte.hydra.log

/**
 * The Level of Logging.
 *
 * @property priority Priority of the Level.
 */
enum class LogLevel(val priority: Int) {

    /**
     * Debug Log Level. Should be shown only for debugging.
     */
    DEBUG(1),

    /**
     * Information Log Level.
     */
    INFO(2),

    /**
     * Warning Log Level. Should be used to log some warnings.
     */
    WARNING(3),

    /**
     * Error Log Level. Should be used to log some errors.
     */
    ERROR(4)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy