summaryrefslogtreecommitdiff
path: root/Sora/SoraApp.swift
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-02-27 21:00:03 -0800
committerFuwn <[email protected]>2025-02-27 21:00:03 -0800
commit365d859a4c9871d7cc304b25b557f5d5d1ce92eb (patch)
treef52662f4ff1cf4a1f645561d6e29154161cc4606 /Sora/SoraApp.swift
parentfeat: Development commit (diff)
downloadsora-testing-365d859a4c9871d7cc304b25b557f5d5d1ce92eb.tar.xz
sora-testing-365d859a4c9871d7cc304b25b557f5d5d1ce92eb.zip
feat: Development commit
Diffstat (limited to 'Sora/SoraApp.swift')
-rw-r--r--Sora/SoraApp.swift8
1 files changed, 6 insertions, 2 deletions
diff --git a/Sora/SoraApp.swift b/Sora/SoraApp.swift
index 45a9ee1..cea526f 100644
--- a/Sora/SoraApp.swift
+++ b/Sora/SoraApp.swift
@@ -1,8 +1,12 @@
import SwiftUI
-func debugPrint(_ items: Any...) {
+func debugPrint(
+ _ items: Any...,
+ separator: String = " ",
+ terminator: String = "\n"
+) {
#if DEBUG
- Swift.print(items, terminator: "\n")
+ Swift.print(items, separator: separator, terminator: terminator)
#endif
}