Rewild Your Web
18
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: turn off some noisy logging

Signed-off-by: webbeef <me@webbeef.org>

webbeef 458576f7 ab7ef537

+2 -3
+1 -1
patches/components/constellation/pairing.rs.patch
··· 508 508 + match guard.as_ref() { 509 509 + Some(mgr) => mgr.clone(), 510 510 + None => { 511 - + error!("Cannot broadcast: pairing service not started"); 511 + + warn!("Cannot broadcast: pairing service not started"); 512 512 + return; 513 513 + }, 514 514 + }
+1 -2
patches/components/net/web_tiles.rs.patch
··· 1 1 --- original 2 2 +++ modified 3 - @@ -0,0 +1,126 @@ 3 + @@ -0,0 +1,125 @@ 4 4 +// SPDX-License-Identifier: AGPL-3.0-or-later 5 5 + 6 6 +use std::fs::{self, File}; ··· 118 118 + continue; 119 119 + }; 120 120 + if let Ok(tile) = serde_json::from_reader::<File, WebTile>(file) { 121 - + println!("============ Loading tile {} {}", tile.subject, tile.rkey); 122 121 + result.insert((tile.subject.clone(), tile.rkey.clone()), tile); 123 122 + } 124 123 + }