We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9757c72 commit 23a9b0cCopy full SHA for 23a9b0c
services/gam/src/tokens.rs
@@ -42,9 +42,20 @@ impl<'a> TokenManager {
42
} else {
43
// throw a bone to the dev who has to debug this error. This typically only triggers after a major
44
// refactor and some UX element was removed and we forgot to update it in this table here.
45
- log::info!("Occupied token slots:");
+ log::info!("Occupied token slots: ***");
46
for t in self.tokens.iter() {
47
- log::info!("{}", t.name);
+ log::info!(" {}", t.name);
48
+ }
49
+ log::info!("Expected token slots:");
50
+ for t in EXPECTED_BOOT_CONTEXTS.iter() {
51
+ log::info!(" {}", t);
52
53
+ for t in EXPECTED_APP_CONTEXTS.iter() {
54
55
56
+ #[cfg(feature="unsafe-app-loading")]
57
+ for t in self.extra_names.iter() {
58
+ log::info!("{}", t);
59
}
60
false
61
0 commit comments