aboutsummaryrefslogtreecommitdiff
path: root/src/storage
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2023-12-20 13:55:23 +0100
committerQuentin Dufour <quentin@deuxfleurs.fr>2023-12-20 13:55:23 +0100
commit2830e62df99dc236cd2ba63a909849cf973d2654 (patch)
treefd9c642e7e231a1bf91527cd8af95a02a85bdd42 /src/storage
parent3a1f68c6bf56b572c1513a8358970536d4555078 (diff)
downloadaerogramme-2830e62df99dc236cd2ba63a909849cf973d2654.tar.gz
aerogramme-2830e62df99dc236cd2ba63a909849cf973d2654.zip
working in memory storage
Diffstat (limited to 'src/storage')
-rw-r--r--src/storage/in_memory.rs1
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());