Skip to content

Commit a43a713

Browse files
committed
Removed setting error stacktrace
1 parent 20840f0 commit a43a713

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/main/kotlin/com/lambda/config/AbstractSetting.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ abstract class AbstractSetting<T : Any>(
114114
runCatching {
115115
value = gson.fromJson(serialized, type)
116116
}.onFailure {
117-
LOG.warn("Failed to load setting ${this.name} with value $serialized. Resetting to default value $defaultValue", it)
117+
LOG.warn("Failed to load setting ${this.name} with value $serialized. Resetting to default value $defaultValue")
118118
value = defaultValue
119119
}
120120
}

0 commit comments

Comments
 (0)