Skip to content

Commit 1c01c43

Browse files
committed
fix log message format for esacpe intellij terminal highlighting
1 parent 3d08605 commit 1c01c43

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group = "hyeon9mak"
11-
version = "2.0.1-spring-boot-3"
11+
version = "2.0.2-spring-boot-3"
1212

1313
java {
1414
toolchain {

src/main/java/hyeon9mak/multidatasourcequerycounter/QueryCountLogger.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
@Component
88
public class QueryCountLogger {
99

10-
private static final String LOG_MESSAGE_FORMAT = "{} - totalQueryCount: {}, totalSpendTime: {}ms";
10+
private static final String LOG_MESSAGE_FORMAT = "'{}' - totalQueryCount: {}, totalSpendTime: {}ms";
1111

1212
private final Logger logger = LoggerFactory.getLogger(getClass());
1313
private final QueryCounterLoggingLevelProperties properties;

0 commit comments

Comments
 (0)