From 841a691ec17380bc8b59e73bd40b63a01413435c Mon Sep 17 00:00:00 2001 From: iximeow Date: Sat, 24 Jun 2023 12:41:51 -0700 Subject: make webserver configurable (instead of hardcoded configs lol) --- src/ci_runner.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/ci_runner.rs') diff --git a/src/ci_runner.rs b/src/ci_runner.rs index 97d8505..9deb0bb 100644 --- a/src/ci_runner.rs +++ b/src/ci_runner.rs @@ -395,6 +395,7 @@ impl RunnerClient { #[tokio::main] async fn main() { + tracing_subscriber::fmt::init(); let secret = std::fs::read_to_string("./auth_secret").unwrap(); let client = reqwest::ClientBuilder::new() .connect_timeout(Duration::from_millis(1000)) -- cgit v1.1