chore: comment out debug log

This commit is contained in:
2026-05-26 10:12:10 +08:00
parent a46b450ef0
commit 0fa6236211
2 changed files with 2 additions and 2 deletions
@@ -29,7 +29,7 @@ namespace OCES.Audio
internal void Restart(MusicContainer container, float inheritedBpm, double dspTime, double startOffset = 0d) internal void Restart(MusicContainer container, float inheritedBpm, double dspTime, double startOffset = 0d)
{ {
Debug.Log($"[BeatClock] Restarting {container.Id}, inheritedBpm = {inheritedBpm}, dspTime = {dspTime}"); //Debug.Log($"[BeatClock] Restarting {container.Id}, inheritedBpm = {inheritedBpm}, dspTime = {dspTime}");
StopAll(); StopAll();
this.m_blendError = this.m_stopped = false; this.m_blendError = this.m_stopped = false;
this.m_containerId = container.Id; this.m_containerId = container.Id;
@@ -354,7 +354,7 @@ namespace OCES.Audio
source.loop = false; source.loop = false;
source.volume = volumeScale; source.volume = volumeScale;
source.Play(); source.Play();
Debug.Log($"[LongAudioContainerPlayer] Playing {segment.Name} at {AudioSettings.dspTime}"); //Debug.Log($"[LongAudioContainerPlayer] Playing {segment.Name} at {AudioSettings.dspTime}");
if (isLoop && segment.StartOffset > 0) if (isLoop && segment.StartOffset > 0)
{ {