columns: remove spamming info logs about writing to cache

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2025-04-30 11:00:19 -07:00
parent 1931eb6558
commit b83c5f7de5

View File

@@ -3,7 +3,7 @@ use std::{collections::HashMap, fmt, str::FromStr};
use enostr::Pubkey; use enostr::Pubkey;
use nostrdb::{Ndb, Transaction}; use nostrdb::{Ndb, Transaction};
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use tracing::{error, info}; use tracing::{debug, error};
use crate::{ use crate::{
column::{Columns, IntermediaryRoute}, column::{Columns, IntermediaryRoute},
@@ -66,7 +66,7 @@ pub fn save_decks_cache(path: &DataPath, decks_cache: &DecksCache) {
DECKS_CACHE_FILE, e DECKS_CACHE_FILE, e
); );
} else { } else {
info!("Successfully wrote decks cache to {}", DECKS_CACHE_FILE); debug!("Successfully wrote decks cache to {}", DECKS_CACHE_FILE);
} }
} }