We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 850c316 commit 7607495Copy full SHA for 7607495
packages/types/src/severity.ts
@@ -1,19 +1,33 @@
1
-/** JSDoc */
2
-// eslint-disable-next-line import/export
+/**
+ * Levels are used in the UI to emphasize and deemphasize the crumb.
3
+ */
4
export enum Severity {
- /** JSDoc */
5
- Fatal = 'fatal',
6
7
- Error = 'error',
8
+ /**
+ * Debug level.
+ Debug = 'debug',
9
+
10
11
+ * Info level.
12
13
+ Info = 'info',
14
15
16
+ * Warning level.
17
18
Warning = 'warning',
19
20
21
+ * Error level.
22
23
+ Error = 'error',
24
25
26
+ * Fatal level.
27
28
+ Fatal = 'fatal',
29
30
Log = 'log',
- Info = 'info',
- Debug = 'debug',
31
Critical = 'critical',
32
}
33
0 commit comments