aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt-odlux/odlux/framework/src/utilities/logLevel.ts
diff options
context:
space:
mode:
Diffstat (limited to 'sdnr/wt-odlux/odlux/framework/src/utilities/logLevel.ts')
-rw-r--r--sdnr/wt-odlux/odlux/framework/src/utilities/logLevel.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/sdnr/wt-odlux/odlux/framework/src/utilities/logLevel.ts b/sdnr/wt-odlux/odlux/framework/src/utilities/logLevel.ts
new file mode 100644
index 000000000..a198d98a9
--- /dev/null
+++ b/sdnr/wt-odlux/odlux/framework/src/utilities/logLevel.ts
@@ -0,0 +1,8 @@
+export enum LogLevel {
+ Always = 0,
+ Error = 1,
+ Warning = 2,
+ Info = 3,
+ Debug = 4,
+ Trace = 5,
+}