sql console now shows error message if any SQL error ocurred

This commit is contained in:
azivner
2017-12-19 22:33:44 -05:00
parent 2df81c3a83
commit f54d855f55
3 changed files with 25 additions and 5 deletions

View File

@@ -192,6 +192,8 @@ async function wrap(func) {
catch (e) {
log.error("Error executing query. Inner exception: " + e.stack + thisError.stack);
thisError.message = e.stack;
throw thisError;
}
}