( type: string, message: string, contexts: string[] = [], )
| 17 | * @param contexts - Optional array of context strings appended to the log entry. |
| 18 | */ |
| 19 | export function logInfo( |
| 20 | type: string, |
| 21 | message: string, |
| 22 | contexts: string[] = [], |
| 23 | ) { |
| 24 | logMessage(log.info, type, message, undefined, contexts); |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * Logs a warning message via electron-log. |
no test coverage detected