Skip to content
This repository was archived by the owner on Oct 24, 2020. It is now read-only.

Commit edece55

Browse files
committed
Add the toString method
1 parent 2c459f6 commit edece55

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

runtime/src/main/java/org/seasar/doma/quarkus/runtime/DomaSettings.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,18 @@ public LogSettings(boolean sql, boolean dao, boolean closingFailure) {
4343
public LogPreferences asLogPreferences() {
4444
return new LogPreferences(sql, dao, closingFailure);
4545
}
46+
47+
@Override
48+
public String toString() {
49+
return "LogSettings{"
50+
+ "sql="
51+
+ sql
52+
+ ", dao="
53+
+ dao
54+
+ ", closingFailure="
55+
+ closingFailure
56+
+ '}';
57+
}
4658
}
4759

4860
public enum DialectType {

0 commit comments

Comments
 (0)