Skip to content

Commit fba22d0

Browse files
committed
Update logging due to the previous rename
1 parent 4494f2b commit fba22d0

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

src/shared/message/server_message/message_buffer.rs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)