Fix loop exceptions not printed in terminal

This commit is contained in:
miruka 2020-03-22 20:58:24 -04:00
parent 8d5bc45ceb
commit b1144572aa
2 changed files with 4 additions and 16 deletions

View File

@ -31,7 +31,7 @@ QtObject {
onError ?
onError(type, args, error, traceback, uuid) :
utils.showError(type, traceback, uuid)
utils.showError(type, traceback, "", uuid)
return
}
@ -43,19 +43,7 @@ QtObject {
function onLoopException(message, error, traceback) {
// No need to log these here, the asyncio exception handler does it
const type = py.getattr(py.getattr(error, "__class__"), "__name__")
if (window.hideErrorTypes.has(type)) {
console.warn(
"Not showing error popup for this type due to user choice"
)
return
}
utils.makePopup(
"Popups/UnexpectedErrorPopup.qml",
window,
{ errorType: type, message, traceback },
)
utils.showError(type, traceback, message)
}

View File

@ -58,7 +58,7 @@ QtObject {
}
function showError(type, traceback, sourceIndication="") {
function showError(type, traceback, sourceIndication="", message="") {
console.error(`python: ${sourceIndication}\n${traceback}`)
if (window.hideErrorTypes.has(type)) {
@ -72,7 +72,7 @@ QtObject {
utils.makePopup(
"Popups/UnexpectedErrorPopup.qml",
window,
{ errorType: type, traceback },
{ errorType: type, message, traceback },
)
}