We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f28957f commit 0107299Copy full SHA for 0107299
crates/synd_api/src/serve/auth.rs
@@ -48,7 +48,7 @@ impl Authenticator {
48
match (split.next(), split.next()) {
49
(Some("github"), Some(access_token)) => {
50
if let Some(principal) = self.cache.get(token).await {
51
- tracing::info!("Principal cache hit");
+ tracing::debug!("Principal cache hit");
52
return Ok(principal);
53
}
54
@@ -68,7 +68,7 @@ impl Authenticator {
68
69
(Some("google"), Some(id_token)) => {
70
if let Some(principal) = self.cache.get(id_token).await {
71
72
73
74
0 commit comments