I'm a bit uncertain about this, they do have a reference to Serilog, but the vast majority of logging already resides in Core, so I opted to move it to Umbraco.Cms.Core
16 lines
300 B
C#
16 lines
300 B
C#
namespace Umbraco.Cms.Core.Logging.Viewer
|
|
{
|
|
public class LogLevelCounts
|
|
{
|
|
public int Information { get; set; }
|
|
|
|
public int Debug { get; set; }
|
|
|
|
public int Warning { get; set; }
|
|
|
|
public int Error { get; set; }
|
|
|
|
public int Fatal { get; set; }
|
|
}
|
|
}
|