log errors (#5139)

zio/stable
Samuel Newman 2024-09-04 15:29:20 +01:00 committed by GitHub
parent e2a244b998
commit 3eef62d995
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 12 additions and 6 deletions

View File

@ -123,12 +123,16 @@ export function useUploadVideo({
blobRef, blobRef,
}) })
}, },
onError: useCallback(() => { onError: useCallback(
dispatch({ error => {
type: 'SetError', logger.error('Error processing video', {safeMessage: error})
error: _(msg`Video failed to process`), dispatch({
}) type: 'SetError',
}, [_]), error: _(msg`Video failed to process`),
})
},
[_],
),
}) })
const {mutate: onVideoCompressed} = useUploadVideoMutation({ const {mutate: onVideoCompressed} = useUploadVideoMutation({
@ -140,6 +144,7 @@ export function useUploadVideo({
setJobId(response.jobId) setJobId(response.jobId)
}, },
onError: e => { onError: e => {
logger.error('Error uploading video', {safeMessage: e})
if (e instanceof ServerError) { if (e instanceof ServerError) {
dispatch({ dispatch({
type: 'SetError', type: 'SetError',
@ -171,6 +176,7 @@ export function useUploadVideo({
onVideoCompressed(video) onVideoCompressed(video)
}, },
onError: e => { onError: e => {
logger.error('Error uploading video', {safeMessage: e})
if (e instanceof VideoTooLargeError) { if (e instanceof VideoTooLargeError) {
dispatch({ dispatch({
type: 'SetError', type: 'SetError',