diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-12-20 13:55:23 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-12-20 13:55:23 +0100 |
commit | 2830e62df99dc236cd2ba63a909849cf973d2654 (patch) | |
tree | fd9c642e7e231a1bf91527cd8af95a02a85bdd42 /src/storage | |
parent | 3a1f68c6bf56b572c1513a8358970536d4555078 (diff) | |
download | aerogramme-2830e62df99dc236cd2ba63a909849cf973d2654.tar.gz aerogramme-2830e62df99dc236cd2ba63a909849cf973d2654.zip |
working in memory storage
Diffstat (limited to 'src/storage')
-rw-r--r-- | src/storage/in_memory.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/storage/in_memory.rs b/src/storage/in_memory.rs index b1f0508..00eedab 100644 --- a/src/storage/in_memory.rs +++ b/src/storage/in_memory.rs @@ -78,6 +78,7 @@ pub struct MemBuilder { impl MemBuilder { pub fn new(user: &str) -> Arc<Self> { + tracing::debug!("initialize membuilder for {}", user); let mut unicity: Vec<u8> = vec![]; unicity.extend_from_slice(file!().as_bytes()); unicity.extend_from_slice(user.as_bytes()); |