Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add more error logs #1356
Browse files Browse the repository at this point in the history
shunguoy committed May 5, 2023
1 parent c165d07 commit a34510f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions accessibility-checker/src-ts/lib/ACEngineManager.ts
Original file line number Diff line number Diff line change
@@ -95,9 +95,11 @@ try {
return ACEngineManager.loadEngineLocal();
}).catch(function (err) {
console.log(err);
return Promise.reject(err);
});
} catch (e) {
console.log(e);
return Promise.reject(e);
}
} else {
config.DEBUG && console.log("[INFO] aChecker.loadEngine detected local");

0 comments on commit a34510f

Please sign in to comment.