diff options
author | Cara Salter <cara@devcara.com> | 2022-05-30 00:24:40 -0400 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2022-05-30 00:24:40 -0400 |
commit | ecca0e8cef755899049e7f541c86b9d06b2438a4 (patch) | |
tree | 1b86c9667a3044b885a468744780effee1ed401f /src/main.rs | |
parent | b7752eef57e008c0d2a7dad868e98ff8b802bd22 (diff) | |
download | homeworld-ecca0e8cef755899049e7f541c86b9d06b2438a4.tar.gz homeworld-ecca0e8cef755899049e7f541c86b9d06b2438a4.zip |
meta: Add Bearer authentication
Makes use of a pre-shared key. Do not expose this to the internet!
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 355cc88..590d714 100644 --- a/src/main.rs +++ b/src/main.rs @@ -31,7 +31,7 @@ async fn main() { tracing_subscriber::registry() .with(tracing_subscriber::EnvFilter::new( std::env::var("RUST_LOG") - .unwrap_or_else(|_| "waifud=info,tower_http=debug".into()), + .unwrap_or_else(|_| "homeworld=info,tower_http=debug".into()), )) .with(tracing_subscriber::fmt::layer()) .init(); |