aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/framework/src/utilities/logLevel.ts
blob: a198d98a92f50e1f46f268636db7c560304cac92 (plain)
1
2
3
4
5
6
7
8
export enum LogLevel {
  Always = 0,
  Error = 1,
  Warning = 2,
  Info = 3,
  Debug = 4,
  Trace = 5,
}