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)
} catch {
print("Failed to configure audio session: \(error)")
Design.debugLog("Failed to configure audio session: \(error)")
}
#endif
}
@ -168,7 +168,7 @@ public final class SoundManager {
player.play()
return
} 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()
audioPlayers[key] = player
} catch {
print("Failed to preload sound \(key): \(error)")
Design.debugLog("Failed to preload sound \(key): \(error)")
}
}
}