mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
better error message
This commit is contained in:
parent
c346ba8703
commit
289f1cf5e2
2 changed files with 2 additions and 2 deletions
|
|
@ -59,7 +59,7 @@ const getImageSize = async (src: string): Promise<ImageSize | null> => {
|
|||
height,
|
||||
}
|
||||
} catch (e) {
|
||||
logger.error(e)
|
||||
logger.error('get image size error', e)
|
||||
return null
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -130,7 +130,7 @@ const triggerActions = async (
|
|||
try {
|
||||
await Promise.all(actionPromises)
|
||||
} catch (error) {
|
||||
logger.error(error)
|
||||
logger.error('Error triggering rule actions', error)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue