diff options
| author | Ubuntu <github@matdoes.dev> | 2022-11-08 20:14:45 +0000 |
|---|---|---|
| committer | Ubuntu <github@matdoes.dev> | 2022-11-08 20:14:45 +0000 |
| commit | 10bdcf3b4d3fad4e2b2d3f9d8b35f099e077d4cc (patch) | |
| tree | e89be2a12d8d121c082fce0b746dc5c87fd812a2 /azalea-client/src | |
| parent | 21898627fd1fa52fa2bc41377bfd192d50063e75 (diff) | |
| download | azalea-drasl-10bdcf3b4d3fad4e2b2d3f9d8b35f099e077d4cc.tar.xz | |
log some more stuff
Diffstat (limited to 'azalea-client/src')
| -rw-r--r-- | azalea-client/src/client.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/azalea-client/src/client.rs b/azalea-client/src/client.rs index 7f6e591a..c3eda3e7 100644 --- a/azalea-client/src/client.rs +++ b/azalea-client/src/client.rs @@ -419,6 +419,10 @@ impl Client { // send the client information that we have set let client_information_packet: ClientInformation = client.client_information.read().clone(); + log::debug!( + "Sending client information because login: {:?}", + client_information_packet + ); client.write_packet(client_information_packet.get()).await?; // brand @@ -865,6 +869,10 @@ impl Client { let client_information = self.client_information.read(); client_information.clone().get() }; + log::debug!( + "Sending client information (already logged in): {:?}", + client_information_packet + ); self.write_packet(client_information_packet).await?; } |
