()
| 29 | } |
| 30 | |
| 31 | public static get debugLevel(): DebugLevel { |
| 32 | const debug = |
| 33 | this.searchParams.get(DASH_DEBUG) || CookieStorage.get(DASH_DEBUG); |
| 34 | |
| 35 | return debug |
| 36 | ? (DebugLevel as any)[debug] || DebugLevel.NONE |
| 37 | : DebugLevel.NONE; |
| 38 | } |
| 39 | |
| 40 | public static get logLevel(): LogLevel { |
| 41 | const log = |