File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
crates/buttplug_server/src Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 ( )
You can’t perform that action at this time.
0 commit comments