(name: string, ...args: any[])
| 1 | export const log = (name: string, ...args: any[]) => { |
| 2 | console.log( |
| 3 | `%c Decky %c ${name} %c`, |
| 4 | 'background: #16a085; color: black;', |
| 5 | 'background: #1abc9c; color: black;', |
| 6 | 'background: transparent;', |
| 7 | ...args, |
| 8 | ); |
| 9 | }; |
| 10 | |
| 11 | export const debug = (name: string, ...args: any[]) => { |
| 12 | console.debug( |