We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5924c10 + 5421f0a commit 2536c07Copy full SHA for 2536c07
2 files changed
.github/workflows/publish-docs.yml
@@ -22,7 +22,7 @@ jobs:
22
run: ./gradlew dokkaHtmlMultiModule
23
24
- name: Upload Documentation Artifact
25
- uses: actions/upload-pages-artifact@v1
+ uses: actions/upload-pages-artifact@v3
26
with:
27
path: 'build/dokka/htmlMultiModule'
28
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