removed print
Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>
This commit is contained in:
parent
176830f712
commit
36f317c883
@ -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)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user