Browse Source
Generalize logging for received messages
new-http-api
Thomas Eizinger
3 years ago
No known key found for this signature in database
GPG Key ID: 651AC83A6C6C8B96
1 changed files with
2 additions and
1 deletions
-
daemon/src/connection.rs
|
|
@ -136,9 +136,10 @@ impl Actor { |
|
|
|
} |
|
|
|
}; |
|
|
|
|
|
|
|
tracing::trace!("Received '{}'", msg); |
|
|
|
|
|
|
|
match msg { |
|
|
|
wire::MakerToTaker::Heartbeat => { |
|
|
|
tracing::trace!("received a heartbeat message from maker"); |
|
|
|
self.connected_state |
|
|
|
.as_mut() |
|
|
|
.expect("wire messages only to arrive in connected state") |
|
|
|