Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change service error log level #459

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/fiber/network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3378,13 +3378,13 @@ impl From<&MyServiceHandle> for FiberProtocolHandle {
#[async_trait]
impl ServiceHandle for MyServiceHandle {
async fn handle_error(&mut self, _context: &mut ServiceContext, error: ServiceError) {
trace!("Service error: {:?}", error);
error!("Tentacle service error: {:?}", error);
// TODO
// ServiceError::DialerError => remove address from peer store
// ServiceError::ProtocolError => ban peer
}
async fn handle_event(&mut self, _context: &mut ServiceContext, event: ServiceEvent) {
trace!("Service event: {:?}", event);
trace!("Tentacle service event: {:?}", event);
}
}

Expand Down
Loading