File tree Expand file tree Collapse file tree
src/shared/message/server_message Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -71,8 +71,8 @@ impl MessageBuffer {
7171 message. send ( messages, client, ticks) ?;
7272 } else {
7373 debug ! (
74- "ignoring broadcast for channel {} for non-authorized client `{client}`" ,
75- message. channel_id
74+ "ignoring `{:?}` for channel {} for non-authorized client `{client}`" ,
75+ message. targets , message . channel_id
7676 ) ;
7777 }
7878 }
@@ -89,8 +89,8 @@ impl MessageBuffer {
8989 message. send ( messages, client, ticks) ?;
9090 } else {
9191 debug ! (
92- "ignoring broadcast except `{ignored_id }` for channel {} for non-authorized client `{client}`" ,
93- message. channel_id
92+ "ignoring `{:? }` for channel {} for non-authorized client `{client}`" ,
93+ message. targets , message . channel_id
9494 ) ;
9595 }
9696 }
@@ -104,8 +104,9 @@ impl MessageBuffer {
104104 message. send ( messages, client, ticks) ?;
105105 } else {
106106 error ! (
107- "ignoring direct message for non-authorized client `{client}`, \
108- mark it as independent to allow this"
107+ "ignoring `{:?}` for non-authorized client `{client}`, \
108+ mark it as independent to allow this",
109+ message. targets
109110 ) ;
110111 }
111112 }
You can’t perform that action at this time.
0 commit comments