Skip to content

Commit 14bb7fb

Browse files
committed
chore: Convert message debugs to trace level
1 parent b9c70f4 commit 14bb7fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/buttplug_server/src/server.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ impl ButtplugServer {
214214
) -> BoxFuture<'static, Result<ButtplugServerMessageVariant, ButtplugServerMessageVariant>> {
215215
let features = self.device_manager().feature_map();
216216
let msg_id = msg.id();
217-
debug!("Server received: {:?}", msg);
217+
trace!("Server received: {:?}", msg);
218218
match msg {
219219
ButtplugClientMessageVariant::V4(msg) => {
220220
let internal_msg =
@@ -252,7 +252,7 @@ impl ButtplugServer {
252252
});
253253
match ButtplugCheckedClientMessageV4::try_from_client_message(msg, &features) {
254254
Ok(converted_msg) => {
255-
debug!("Converted message: {:?}", converted_msg);
255+
trace!("Converted message: {:?}", converted_msg);
256256
let fut = self.parse_checked_message(converted_msg);
257257
async move {
258258
let result = fut.await.map_err(|e| {
@@ -270,7 +270,7 @@ impl ButtplugServer {
270270
)
271271
.unwrap()
272272
});
273-
debug!("Server returning: {:?}", out_msg);
273+
trace!("Server returning: {:?}", out_msg);
274274
out_msg
275275
}
276276
.boxed()

0 commit comments

Comments
 (0)