From ef6c73c7b0a80f8d2d67ff05b1e9109495ede598 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Tue, 27 Jan 2026 18:04:24 -0300 Subject: [PATCH] Changing logger destination --- Split/Common/Utils/Logger.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Split/Common/Utils/Logger.swift b/Split/Common/Utils/Logger.swift index 0bf30d2c1..32f41ff6d 100644 --- a/Split/Common/Utils/Logger.swift +++ b/Split/Common/Utils/Logger.swift @@ -6,6 +6,7 @@ // import Foundation +import os.log struct TimeChecker { @@ -66,7 +67,7 @@ protocol LogPrinter { class DefaultLogPrinter: LogPrinter { func stdout(_ items: Any...) { - print(items) + os_log("%@", type: .default, items.map { "\($0)" }.joined(separator: " ")) } }