mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-15 04:11:38 +00:00
14 lines
179 B
C#
14 lines
179 B
C#
namespace Oqtane.Shared
|
|
{
|
|
public enum LogLevel
|
|
{
|
|
Trace,
|
|
Debug,
|
|
Information,
|
|
Warning,
|
|
Error,
|
|
Critical,
|
|
None
|
|
}
|
|
}
|