We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20840f0 commit a43a713Copy full SHA for a43a713
common/src/main/kotlin/com/lambda/config/AbstractSetting.kt
@@ -114,7 +114,7 @@ abstract class AbstractSetting<T : Any>(
114
runCatching {
115
value = gson.fromJson(serialized, type)
116
}.onFailure {
117
- LOG.warn("Failed to load setting ${this.name} with value $serialized. Resetting to default value $defaultValue", it)
+ LOG.warn("Failed to load setting ${this.name} with value $serialized. Resetting to default value $defaultValue")
118
value = defaultValue
119
}
120
0 commit comments