print and ignore errors that bubbled up to driver

This commit is contained in:
Eon S. Jeon 2019-12-28 13:32:04 +09:00
parent 4cd8173154
commit 4066112042

View File

@ -187,7 +187,7 @@ class KWinDriver implements IDriverContext {
try {
callback();
} catch (e) {
throw e;
debug(() => ["an error has occurred", e]);
} finally {
this.entered = false;
}