Table of Contents

Interface ILogWriter

Namespace
Framework.Systems.Diagnostics.Logging
Assembly
Assembly-CSharp.dll

실제 로그 출력 전략 계약. LogSystem 내부에서만 사용하는 Strategy 인터페이스.

public interface ILogWriter

Remarks

개발: UnityLogWriter (Debug.Log), 릴리즈: NullLogWriter (no-op). 빌드 환경에 따라 RootScope에서 교체 등록한다.

Methods

Write(LogLevel, string)

지정 레벨로 메시지 출력.

void Write(LogLevel level, string message)

Parameters

level LogLevel

출력 레벨(Info/Warning/Error).

message string

출력할 메시지.