Skip to content

Commit 2536c07

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 5924c10 + 5421f0a commit 2536c07

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
run: ./gradlew dokkaHtmlMultiModule
2323

2424
- name: Upload Documentation Artifact
25-
uses: actions/upload-pages-artifact@v1
25+
uses: actions/upload-pages-artifact@v3
2626
with:
2727
path: 'build/dokka/htmlMultiModule'
2828

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)