Skip to content

Commit 26ca28e

Browse files
committed
Use env_logger in cts_runner
1 parent 7ff0bd7 commit 26ca28e

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cts_runner/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ description = "CTS runner for wgpu"
77
license.workspace = true
88
publish = false
99

10+
[dependencies]
11+
env_logger.workspace = true
12+
1013
# We make all dependencies conditional on not being wasm,
1114
# so the whole workspace can built as wasm.
1215
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]

cts_runner/src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,5 +147,6 @@ impl deno_web::TimersPermission for Permissions {
147147

148148
#[tokio::main(flavor = "current_thread")]
149149
async fn main() {
150+
env_logger::init();
150151
unwrap_or_exit(run().await)
151152
}

0 commit comments

Comments
 (0)