diff options
author | Marcos Casagrande <marcoscvp90@gmail.com> | 2020-05-20 16:27:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-20 16:27:01 +0200 |
commit | 7566aa8765be82a9773b7ff83c3ddc8e70041e79 (patch) | |
tree | 48b06031b5fc83bb6b4e680747c6d07d767baaa6 /std/log/mod.ts | |
parent | 8799855fdc97960b18fbbb3450ed132e352607c4 (diff) |
fix(std/log): await default logger setup (#5341)
Diffstat (limited to 'std/log/mod.ts')
-rw-r--r-- | std/log/mod.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/log/mod.ts b/std/log/mod.ts index 4032937a2..983e82401 100644 --- a/std/log/mod.ts +++ b/std/log/mod.ts @@ -127,4 +127,4 @@ export async function setup(config: LogConfig): Promise<void> { } } -setup(DEFAULT_CONFIG); +await setup(DEFAULT_CONFIG); |