add a struct for storing identities, construct it when importing and save

This commit is contained in:
kalmenn 2026-02-02 09:02:11 +01:00
parent a844ec48a4
commit 76fe594896
Signed by: kalmenn
GPG key ID: F500055C44BC3834
5 changed files with 169 additions and 20 deletions

View file

@ -4,7 +4,7 @@ use tracing_subscriber::{Layer as _, layer::SubscriberExt as _, util::Subscriber
pub const DEFAULT_LOG_LEVEL: Level = if cfg!(debug_assertions) {
Level::DEBUG // debug builds
} else {
Level::WARN // release builds
Level::INFO // release builds
};
fn level_to_index(level: Level) -> u8 {