tracks lexicons and how many times they appeared on the jetstream

refactor(server): only print eps if its more than 0, eg. doing something

ptr.pet 852d8aea 4174678b

verified
Changed files
+4 -1
server
src
+4 -1
server/src/main.rs
···
move || {
loop {
std::thread::sleep(Duration::from_secs(3));
-
tracing::info!("{} rps", to.eps());
+
let eps = to.eps();
+
if eps > 0 {
+
tracing::info!("{} rps", eps);
+
}
}
}
});