디버깅용 로그 제거

This commit is contained in:
2026-02-16 22:17:37 +09:00
parent 2f624f621c
commit f73c660579
21 changed files with 65 additions and 258 deletions

View File

@@ -104,9 +104,6 @@ namespace Northbound
_hasReachedHalfway = true;
OnHalfwayPoint?.Invoke(cycleLength / 2f);
NotifyHalfwayClientRpc();
if (showDebugLogs)
Debug.Log($"<color=yellow>[GlobalTimer] 사이클 중간 지점 도달</color>");
}
// 사이클 완료
@@ -136,14 +133,11 @@ namespace Northbound
// 다음 사이클 시작
_currentTime.Value = cycleLength;
_cycleCount.Value++;
_hasReachedHalfway = false;
_hasReachedHalfway = false;
OnCycleStart?.Invoke(_cycleCount.Value);
NotifyCycleStartClientRpc(_cycleCount.Value);
if (showDebugLogs)
Debug.Log($"<color=cyan>[GlobalTimer] 사이클 {_cycleCount.Value} 시작</color>");
}
OnCycleStart?.Invoke(_cycleCount.Value);
NotifyCycleStartClientRpc(_cycleCount.Value);
}
}
private void OnCurrentTimeChanged(float previousValue, float newValue)
@@ -171,9 +165,6 @@ namespace Northbound
OnCycleStart?.Invoke(_cycleCount.Value);
NotifyCycleStartClientRpc(_cycleCount.Value);
if (showDebugLogs)
Debug.Log($"<color=green>[GlobalTimer] 타이머 시작: {cycleLength}초</color>");
}
/// <summary>