diff options
| author | Ubuntu <github@matdoes.dev> | 2022-11-08 20:34:39 +0000 |
|---|---|---|
| committer | Ubuntu <github@matdoes.dev> | 2022-11-08 20:34:39 +0000 |
| commit | 350f9f105e433f25ea86713b5c0e9da7422f0034 (patch) | |
| tree | 92c4e1774f4084adc5956fa1571e975cac70e914 /azalea-client/src | |
| parent | 10bdcf3b4d3fad4e2b2d3f9d8b35f099e077d4cc (diff) | |
| download | azalea-drasl-350f9f105e433f25ea86713b5c0e9da7422f0034.tar.xz | |
don't log light updates
Diffstat (limited to 'azalea-client/src')
| -rw-r--r-- | azalea-client/src/client.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-client/src/client.rs b/azalea-client/src/client.rs index c3eda3e7..b35b4fc6 100644 --- a/azalea-client/src/client.rs +++ b/azalea-client/src/client.rs @@ -584,8 +584,8 @@ impl Client { .replace_with_packet_data(&pos, &mut Cursor::new(&p.chunk_data.data)) .unwrap(); } - ClientboundGamePacket::LightUpdate(p) => { - debug!("Got light update packet {:?}", p); + ClientboundGamePacket::LightUpdate(_p) => { + // debug!("Got light update packet {:?}", p); } ClientboundGamePacket::AddEntity(p) => { debug!("Got add entity packet {:?}", p); |
