레벨 생성 완화 및 체크포인트 강화
This commit is contained in:
@@ -33,7 +33,9 @@ internal sealed class StatusReporter
|
||||
{
|
||||
if (_lastMessage == message && !newline) return;
|
||||
var now = DateTime.UtcNow;
|
||||
if (!newline && (now - _lastWriteTime).TotalMilliseconds < 200)
|
||||
// 너무 자주 찍으면 콘솔이 쓸데없이 지저분해지므로,
|
||||
// 진행 중 상태는 최소 1초 간격으로만 업데이트한다.
|
||||
if (!newline && (now - _lastWriteTime).TotalMilliseconds < 1000)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user