19 lines
479 B
C#
19 lines
479 B
C#
namespace YY.Admin.Core;
|
|
|
|
/// <summary>
|
|
/// 客户端日志上报接入点,用于将本地日志异步转发到后端。
|
|
/// </summary>
|
|
public interface IClientLogReportSink
|
|
{
|
|
/// <summary>
|
|
/// 上报一条通用日志。
|
|
/// </summary>
|
|
Task ReportLogAsync(
|
|
string category,
|
|
string message,
|
|
string? account = null,
|
|
bool? success = null,
|
|
string? exception = null,
|
|
CancellationToken cancellationToken = default);
|
|
}
|