aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/read.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/read.rs')
-rwxr-xr-xazalea-protocol/src/read.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-protocol/src/read.rs b/azalea-protocol/src/read.rs
index e9337898..434cc74a 100755
--- a/azalea-protocol/src/read.rs
+++ b/azalea-protocol/src/read.rs
@@ -349,10 +349,10 @@ where
}
if log::log_enabled!(log::Level::Trace) {
- const EXTRA_LARGE_LOGS: bool = false;
+ const DO_NOT_CUT_OFF_PACKET_LOGS: bool = false;
let buf_string: String = {
- if !EXTRA_LARGE_LOGS && buf.len() > 500 {
+ if !DO_NOT_CUT_OFF_PACKET_LOGS && buf.len() > 500 {
let cut_off_buf = &buf[..500];
format!("{cut_off_buf:?}...")
} else {