using Microsoft.Extensions.Logging; using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace Sanhe.Abp.Logging { public interface ILoggingManager { Task GetAsync( string id, CancellationToken cancellationToken = default); Task GetCountAsync( DateTime? startTime = null, DateTime? endTime = null, LogLevel? level = null, string machineName = null, string environment = null, string application = null, string context = null, string requestId = null, string requestPath = null, string correlationId = null, int? processId = null, int? threadId = null, bool? hasException = null, CancellationToken cancellationToken = default); Task> GetListAsync( string sorting = null, int maxResultCount = 50, int skipCount = 0, DateTime? startTime = null, DateTime? endTime = null, LogLevel? level = null, string machineName = null, string environment = null, string application = null, string context = null, string requestId = null, string requestPath = null, string correlationId = null, int? processId = null, int? threadId = null, bool? hasException = null, bool includeDetails = false, CancellationToken cancellationToken = default); } }