aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-client/src')
-rw-r--r--azalea-client/src/client.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/azalea-client/src/client.rs b/azalea-client/src/client.rs
index 54e08aae..2ca92354 100644
--- a/azalea-client/src/client.rs
+++ b/azalea-client/src/client.rs
@@ -230,7 +230,7 @@ impl Client {
}
},
Err(e) => {
- panic!("Error: {:?}", e);
+ panic!("Error: {e:?}");
}
}
};
@@ -300,7 +300,7 @@ impl Client {
if IGNORE_ERRORS {
continue;
} else {
- panic!("Error handling packet: {}", e);
+ panic!("Error handling packet: {e}");
}
}
},
@@ -308,7 +308,7 @@ impl Client {
if IGNORE_ERRORS {
warn!("{}", e);
match e {
- ReadPacketError::FrameSplitter { .. } => panic!("Error: {:?}", e),
+ ReadPacketError::FrameSplitter { .. } => panic!("Error: {e:?}"),
_ => continue,
}
} else {