removed some debug lines

This commit is contained in:
Niklas Kapelle 2025-04-24 11:00:46 +02:00
parent 6292f0c444
commit a45cab0b4b
Signed by: niklas
GPG Key ID: 4EB651B36D841D16
3 changed files with 0 additions and 4 deletions

View File

@ -34,7 +34,6 @@ impl IDStore {
pub fn add_id(&mut self, id: TallyID) {
let day = self.get_current_day();
println!("id: {}", id.0);
day.add_id(id);
}

View File

@ -12,7 +12,6 @@ mod webserver;
#[tokio::main]
async fn main() {
println!("Heeeeeeeeeeeelllllllooooooo start!");
let (tx, mut rx) = mpsc::channel::<String>(1);
tokio::spawn(async move {

View File

@ -29,10 +29,8 @@ pub async fn run_pm3(tx: mpsc::Sender<String>) -> Result<(), Box<dyn Error>> {
for line_result in reader.lines() {
match line_result {
Ok(line) => {
println!("line: {}", line);
let parse_result = super::parser::parse_line(&line);
if let Some(uid) = parse_result {
println!("uid {}", uid);
match tx.send(uid).await {
Ok(()) => {}
Err(e) => {