notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit b83c5f7de546326b4abde2aa01e78eac791011b3
parent 1931eb6558f1ead54fea552e6e7c9ed68dafb781
Author: William Casarin <jb55@jb55.com>
Date:   Wed, 30 Apr 2025 11:00:19 -0700

columns: remove spamming info logs about writing to cache

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Mcrates/notedeck_columns/src/storage/decks.rs | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

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