Skip to content
This repository was archived by the owner on Feb 1, 2024. It is now read-only.

Commit 1ef2520

Browse files
ver. 1.5.2
1 parent 8f68e42 commit 1ef2520

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

logger-console/src/main/kotlin/logger4k/impl/console/ConsoleLogger.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class ConsoleLogger(override val name: String) : SimpleLogger() {
7070
res.append("")
7171
.append(ConsoleConfig.dateFormat.format(date))
7272
.append(" - ")
73-
.append(String.format("%-10s", threadInfo.name))
73+
.append(String.format("%-12s", threadInfo.name))
7474
.append("/")
7575
.append(level.name[0])
7676
.append(" - ")

logger-core/src/main/kotlin/com/github/openEdgn/logger4k/format/MaxLengthClassFormat.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ package com.github.openEdgn.logger4k.format
2525
* @property maxLine Int
2626
*/
2727
class MaxLengthClassFormat : ClassNameFormat() {
28-
private val maxLine = 25
28+
private val maxLine = 30
2929
override fun format(name: String): String {
3030
return if (name.length > maxLine) {
3131
val list = name.split(".")

0 commit comments

Comments
 (0)