error log
This commit is contained in:
parent
db77b0fdb2
commit
84e9961f4b
@ -191,6 +191,7 @@ async function confirm() {
|
|||||||
} catch (e) {
|
} catch (e) {
|
||||||
const msg = getErrorInfo(e)
|
const msg = getErrorInfo(e)
|
||||||
notification.error(msg)
|
notification.error(msg)
|
||||||
|
console.error(e)
|
||||||
}
|
}
|
||||||
loading.value = false
|
loading.value = false
|
||||||
}
|
}
|
||||||
|
@ -72,6 +72,7 @@ async function confirm() {
|
|||||||
} catch (e) {
|
} catch (e) {
|
||||||
const msg = getErrorInfo(e)
|
const msg = getErrorInfo(e)
|
||||||
notification.error(msg)
|
notification.error(msg)
|
||||||
|
console.error(e)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
loading.value = false;
|
loading.value = false;
|
||||||
|
@ -24,6 +24,7 @@ onMounted(() => {
|
|||||||
} catch (error) {
|
} catch (error) {
|
||||||
const msg = getErrorInfo(error)
|
const msg = getErrorInfo(error)
|
||||||
notification.error(msg)
|
notification.error(msg)
|
||||||
|
console.error(error)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -66,6 +66,7 @@ onMounted(() => {
|
|||||||
} catch (err) {
|
} catch (err) {
|
||||||
const msg = getErrorInfo(err)
|
const msg = getErrorInfo(err)
|
||||||
notification.error(msg)
|
notification.error(msg)
|
||||||
|
console.error(err)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user