show (caught) exceptions during import now as error for easier spotting

console.error instead of console.log
This commit is contained in:
Ralf Becker
2021-06-14 15:22:16 +02:00
parent 829defa0c1
commit 8432cca3ea
2 changed files with 5 additions and 6 deletions

View File

@@ -202,7 +202,7 @@ window.app = {classes: {}};
document.head.appendChild(script);
})
// catch and display, but not stop execution
.catch((err) => { console.log(src+":\n\n"+err.message)});
.catch((err) => { console.error(src+": "+err.message)});
}));
}
@@ -215,10 +215,10 @@ window.app = {classes: {}};
window.egw_LAB = window.egw_ready =
legacy_js_import(include.filter((src) => src.match(legacy_js_regexp) !== null), window.egw_webserverUrl)
.then(Promise.all(egw_modules.map(mod => import(window.egw_webserverUrl+'/api/js/jsapi/'+mod+'.js')
.catch((err) => {console.log(rel_src+":\n\n"+err.message)}))))
.catch((err) => {console.error(rel_src+": "+err.message)}))))
.then(() => Promise.all(include.filter((src) => src.match(legacy_js_regexp) === null) //.reverse()
.map(rel_src => import(window.egw_webserverUrl+'/'+rel_src)
.catch((err) => {console.log(rel_src+":\n\n"+err.message)})
.catch((err) => {console.error(rel_src+": "+err.message)})
))).then(() =>
{
// We need to override the globalEval to mitigate potential execution of