diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2025-03-24 23:46:01 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2025-03-24 23:46:01 -0400 |
| commit | b8238adc19d94c8a43ab0b6b985100fb4bd7869e (patch) | |
| tree | c5074833c06dc483aea6a5c9fcfc1c1da79c8165 /src | |
| parent | 7954fbf8113e4a5ced8b61b49fbf51d353034cba (diff) | |
The label used to mask "Secret" strings in 357116366c1307bedaac6a3dfe9c5ed8e0e0c210 wasn't updated (and wasn't quite correct then, either).
I haven't found a way to derive it from the name of the type.
Diffstat (limited to 'src')
| -rw-r--r-- | src/token/secret.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/token/secret.rs b/src/token/secret.rs index 8f70646..82a43b3 100644 --- a/src/token/secret.rs +++ b/src/token/secret.rs @@ -13,7 +13,7 @@ impl Secret { impl fmt::Debug for Secret { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - f.debug_tuple("IdentityToken").field(&"********").finish() + f.debug_tuple("Secret").field(&"********").finish() } } |
