namespace OrpaonVision.Core.Abstractions; /// /// 应用日志抽象,用于屏蔽日志实现细节。 /// public interface IAppLogger { /// /// 记录信息日志。 /// /// 日志消息。 /// 可选链路标识。 void LogInformation(string message, string? traceId = null); /// /// 记录警告日志。 /// /// 日志消息。 /// 可选链路标识。 void LogWarning(string message, string? traceId = null); /// /// 记录错误日志。 /// /// 日志消息。 /// 可选异常。 /// 可选链路标识。 void LogError(string message, Exception? exception = null, string? traceId = null); }