Skip to content

Commit

Permalink
unhandled
Browse files Browse the repository at this point in the history
  • Loading branch information
noisyscanner committed Oct 22, 2024
1 parent 290f793 commit 02c59b3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion metrics/src/logreceiver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ async fn receive_log(
session.text("{\"success\": false}").await.unwrap();
}

_ => {}
e => {
warn!("Unhandled message type: {:#?}", e);
session.text("{\"success\": false}").await.unwrap();
}
}
}
});
Expand Down

0 comments on commit 02c59b3

Please sign in to comment.