Show coro uuid when logging py exception from QML

This commit is contained in:
miruka 2019-11-12 18:12:08 -04:00
parent c4a65b0cff
commit ea980e0241

View File

@ -23,7 +23,7 @@ function onCoroutineDone(uuid, result, error, traceback) {
onError ?
onError(type, args, error, traceback) :
console.error("python:\n" + traceback)
console.error("python: " + uuid + "\n" + traceback)
} else if (onSuccess) { onSuccess(result) }