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

nativeMain.love.forte.simbot.logger.SimpleConsoleLogger.kt Maven / Gradle / Ivy

Go to download

Simple Robot,一个通用的bot风格事件调度框架,以灵活的统一标准来编写bot应用。

There is a newer version: 4.6.0
Show newest version
/*
 *     Copyright (c) 2023-2024. ForteScarlet.
 *
 *     Project    https://github.com/simple-robot/simpler-robot
 *     Email      [email protected]
 *
 *     This file is part of the Simple Robot Library (Alias: simple-robot, simbot, etc.).
 *
 *     This program is free software: you can redistribute it and/or modify
 *     it under the terms of the GNU Lesser General Public License as published by
 *     the Free Software Foundation, either version 3 of the License, or
 *     (at your option) any later version.
 *
 *     This program is distributed in the hope that it will be useful,
 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *     Lesser GNU General Public License for more details.
 *
 *     You should have received a copy of the Lesser GNU General Public License
 *     along with this program.  If not, see .
 *
 */

package love.forte.simbot.logger

import love.forte.simbot.logger.internal.AbstractSimpleLogger
import love.forte.simbot.logger.internal.toDisplayName


/**
 *
 * @author ForteScarlet
 */
internal class SimpleConsoleLogger(
    private val name: String,
    override val displayName: String = name.toDisplayName(),
    override val level: LogLevel = LogLevel.INFO
) : AbstractSimpleLogger() {
    override fun getName(): String = name

    private fun printLog(shortLevel: String, log: String, throwable: Throwable?) {
        println("[$displayName] $shortLevel: $log")
        throwable?.printStackTrace()
    }

    override fun trace0(formattedLog: String, throwable: Throwable?) {
        printLog("t", formattedLog, throwable)
    }

    override fun debug0(formattedLog: String, throwable: Throwable?) {
        printLog("d", formattedLog, throwable)
    }

    override fun info0(formattedLog: String, throwable: Throwable?) {
        printLog("i", formattedLog, throwable)
    }

    override fun warn0(formattedLog: String, throwable: Throwable?) {
        printLog("w", formattedLog, throwable)
    }

    override fun error0(formattedLog: String, throwable: Throwable?) {
        printLog("e", formattedLog, throwable)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy