removed print

Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>
This commit is contained in:
Matt Bruce 2026-02-09 09:15:37 -06:00
parent 176830f712
commit 36f317c883

View File

@ -133,7 +133,7 @@ public final class SoundManager {
) )
try AVAudioSession.sharedInstance().setActive(true) try AVAudioSession.sharedInstance().setActive(true)
} catch { } catch {
print("Failed to configure audio session: \(error)") Design.debugLog("Failed to configure audio session: \(error)")
} }
#endif #endif
} }
@ -168,7 +168,7 @@ public final class SoundManager {
player.play() player.play()
return return
} catch { } catch {
print("Failed to load sound \(key): \(error)") Design.debugLog("Failed to load sound \(key): \(error)")
} }
} }
@ -202,7 +202,7 @@ public final class SoundManager {
player.prepareToPlay() player.prepareToPlay()
audioPlayers[key] = player audioPlayers[key] = player
} catch { } catch {
print("Failed to preload sound \(key): \(error)") Design.debugLog("Failed to preload sound \(key): \(error)")
} }
} }
} }