summaryrefslogtreecommitdiff
path: root/src/ci_runner.rs
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2023-06-24 12:41:51 -0700
committeriximeow <me@iximeow.net>2023-06-24 12:41:51 -0700
commit841a691ec17380bc8b59e73bd40b63a01413435c (patch)
treed8d83aaf1af025f92d8d670310d2e02c3c4dbb21 /src/ci_runner.rs
parent54a00732752044fdecdd33ec04ec72e0d56b9db5 (diff)
make webserver configurable (instead of hardcoded configs lol)
Diffstat (limited to 'src/ci_runner.rs')
-rw-r--r--src/ci_runner.rs1
1 files changed, 1 insertions, 0 deletions
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))