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
levelLogLevel출력 레벨(Info/Warning/Error).
messagestring출력할 메시지.