Can now reload RUST_LOG at runtime from HTTP API

This commit is contained in:
Igor Katson 2023-11-25 01:24:57 +00:00
parent fa97dedb98
commit 79bd41a552
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5
5 changed files with 69 additions and 18 deletions

View file

@ -730,7 +730,7 @@ impl<'a> PeerConnectionHandler for &'a PeerHandler {
}
Message::Have(h) => self.on_have(h),
Message::NotInterested => {
info!("received \"not interested\", but we don't care yet")
debug!("received \"not interested\", but we don't care yet")
}
message => {
warn!("received unsupported message {:?}, ignoring", message);