( type: string, message: string, notification?: GitifyNotification, )
| 14 | * @param notification - Optional notification to include as context in the log entry. |
| 15 | */ |
| 16 | export function rendererLogInfo( |
| 17 | type: string, |
| 18 | message: string, |
| 19 | notification?: GitifyNotification, |
| 20 | ) { |
| 21 | logInfo(type, message, buildContexts(notification)); |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * Logs a warning message from the renderer process. |
no test coverage detected