mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
LogFormatter now doesn't print time anymore. It's not necessary since most browsers can add a timestamp to log messages.
This commit is contained in:
parent
12e7d79863
commit
d7f0e536ec
@ -3,7 +3,6 @@ package world.phantasmal.web.shared.logging
|
|||||||
import mu.Formatter
|
import mu.Formatter
|
||||||
import mu.KotlinLoggingLevel
|
import mu.KotlinLoggingLevel
|
||||||
import mu.Marker
|
import mu.Marker
|
||||||
import kotlin.js.Date
|
|
||||||
|
|
||||||
class LogFormatter : Formatter {
|
class LogFormatter : Formatter {
|
||||||
override fun formatMessage(
|
override fun formatMessage(
|
||||||
@ -11,7 +10,7 @@ class LogFormatter : Formatter {
|
|||||||
loggerName: String,
|
loggerName: String,
|
||||||
msg: () -> Any?,
|
msg: () -> Any?,
|
||||||
): String =
|
): String =
|
||||||
"${time()} ${level.str()} $loggerName - ${msg.toStringSafe()}"
|
"${level.str()} $loggerName - ${msg.toStringSafe()}"
|
||||||
|
|
||||||
override fun formatMessage(
|
override fun formatMessage(
|
||||||
level: KotlinLoggingLevel,
|
level: KotlinLoggingLevel,
|
||||||
@ -27,7 +26,7 @@ class LogFormatter : Formatter {
|
|||||||
marker: Marker?,
|
marker: Marker?,
|
||||||
msg: () -> Any?,
|
msg: () -> Any?,
|
||||||
): String =
|
): String =
|
||||||
"${time()} ${level.str()} $loggerName [${marker?.getName()}] - ${msg.toStringSafe()}"
|
"${level.str()} $loggerName [${marker?.getName()}] - ${msg.toStringSafe()}"
|
||||||
|
|
||||||
override fun formatMessage(
|
override fun formatMessage(
|
||||||
level: KotlinLoggingLevel,
|
level: KotlinLoggingLevel,
|
||||||
@ -50,17 +49,7 @@ class LogFormatter : Formatter {
|
|||||||
private fun KotlinLoggingLevel.str(): String =
|
private fun KotlinLoggingLevel.str(): String =
|
||||||
name.padEnd(MIN_LEVEL_LEN)
|
name.padEnd(MIN_LEVEL_LEN)
|
||||||
|
|
||||||
private fun time(): String {
|
|
||||||
val date = Date()
|
|
||||||
val h = date.getHours().toString().padStart(2, '0')
|
|
||||||
val m = date.getMinutes().toString().padStart(2, '0')
|
|
||||||
val s = date.getSeconds().toString().padStart(2, '0')
|
|
||||||
val ms = date.getMilliseconds().toString().padStart(3, '0')
|
|
||||||
return "$h:$m:$s.$ms"
|
|
||||||
}
|
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
private val MIN_LEVEL_LEN: Int =
|
private val MIN_LEVEL_LEN: Int = KotlinLoggingLevel.values().maxOf { it.name.length }
|
||||||
KotlinLoggingLevel.values().map { it.name.length }.maxOrNull()!!
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user