Skip to content

Commit aa3a024

Browse files
committed
fix(backend): more descriptive errors
1 parent 762d52f commit aa3a024

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/backend/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ryot"
3-
version = "5.2.5"
3+
version = "5.2.6"
44
edition = "2021"
55
repository = "https://github.com/IgnisDa/ryot"
66
license = "GPL-3.0"

apps/backend/src/utils.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,12 @@ async fn create_oidc_client(config: &config::AppConfig) -> Option<CoreClient> {
9292
}
9393
}
9494
Err(e) => {
95-
tracing::warn!("Error while creating OIDC client: {:?}", e);
95+
tracing::warn!("Error while processing OIDC issuer url: {:?}", e);
9696
None
9797
}
9898
},
9999
Err(e) => {
100-
tracing::warn!("Error while creating OIDC client: {:?}", e);
100+
tracing::warn!("Error while processing OIDC redirect url: {:?}", e);
101101
None
102102
}
103103
}

0 commit comments

Comments
 (0)