Skip to content

Commit b5c85d4

Browse files
committed
Fix lint issues
1 parent 826e7a3 commit b5c85d4

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

core/src/commonMain/kotlin/com/powersync/PowerSyncDatabaseFactory.kt

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,17 @@ public fun PowerSyncDatabase(
3636
factory = factory,
3737
dbFilename = dbFilename,
3838
scope = scope,
39-
logger = logger
39+
logger =
40+
logger
4041
?: Logger(
4142
config = StaticConfig(
42-
logWriterList = listOf(platformLogWriter()),
43-
minSeverity = if (BuildConfig.isDebug)
43+
logWriterList =
44+
listOf(platformLogWriter()),
45+
minSeverity =
46+
if (BuildConfig.isDebug)
4447
Severity.Verbose
4548
else
46-
Severity.Warn
49+
Severity.Warn,
4750
),
4851
tag = "PowerSync",
4952
),

0 commit comments

Comments
 (0)