feat: Add logging

* feat: Add logging

* refactor: Configure the logger for the tests once globally

* feat: Add logging

* fix: Fix ESLint errors due to merge conflicts

* Review log and error messages.

* refactor: Cleanup a bit

* refactor: Change to logger info calls

Co-authored-by: Ruben Verborgh <ruben@verborgh.org>
This commit is contained in:
smessie
2020-10-26 10:31:01 +01:00
committed by GitHub
parent 1ef75126ee
commit 99464d9a95
38 changed files with 232 additions and 107 deletions

View File

@@ -14,7 +14,7 @@ export class StaticAsyncHandler<TOut> extends AsyncHandler<any, TOut> {
if (this.canHandleStatic) {
return;
}
throw new Error('Not supported.');
throw new Error('Not supported');
}
public async handle(): Promise<TOut> {