diff options
| author | Fuwn <[email protected]> | 2025-02-27 21:00:03 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-02-27 21:00:03 -0800 |
| commit | 365d859a4c9871d7cc304b25b557f5d5d1ce92eb (patch) | |
| tree | f52662f4ff1cf4a1f645561d6e29154161cc4606 /Sora/SoraApp.swift | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-365d859a4c9871d7cc304b25b557f5d5d1ce92eb.tar.xz sora-testing-365d859a4c9871d7cc304b25b557f5d5d1ce92eb.zip | |
feat: Development commit
Diffstat (limited to 'Sora/SoraApp.swift')
| -rw-r--r-- | Sora/SoraApp.swift | 8 |
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 } |