Skip to content

Commit 0b4de99

Browse files
committed
Apply format
1 parent b5c85d4 commit 0b4de99

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

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

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,21 @@ public fun PowerSyncDatabase(
3737
dbFilename = dbFilename,
3838
scope = scope,
3939
logger =
40-
logger
41-
?: Logger(
42-
config = StaticConfig(
43-
logWriterList =
44-
listOf(platformLogWriter()),
45-
minSeverity =
46-
if (BuildConfig.isDebug)
47-
Severity.Verbose
48-
else
49-
Severity.Warn,
40+
logger
41+
?: Logger(
42+
config =
43+
StaticConfig(
44+
logWriterList =
45+
listOf(platformLogWriter()),
46+
minSeverity =
47+
if (BuildConfig.isDebug) {
48+
Severity.Verbose
49+
} else {
50+
Severity.Warn
51+
},
52+
),
53+
tag = "PowerSync",
5054
),
51-
tag = "PowerSync",
52-
),
5355
dbDirectory = dbDirectory,
5456
)
5557

0 commit comments

Comments
 (0)