(...args: any[])
| 55 | } |
| 56 | |
| 57 | static logFocus(...args: any[]) { |
| 58 | if (!DEBUG) return; |
| 59 | const fields = { MESSAGE: `${'##'.repeat(indent)}${args.join(', ')}` }; |
| 60 | const domain = 'Material Shell'; |
| 61 | |
| 62 | GLib.log_structured(domain, GLib.LogLevelFlags.LEVEL_MESSAGE, fields); |
| 63 | } |
| 64 | |
| 65 | static logBlank() { |
| 66 | for (let i = 0; i < 50; i++) { |
no test coverage detected