We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 798eb08 commit 4abb7faCopy full SHA for 4abb7fa
1 file changed
core/src/main/java/xyz/gianlu/librespot/core/Session.java
@@ -811,13 +811,12 @@ public void run() {
811
812
try {
813
send(Packet.Type.Pong, packet.payload);
814
- LOGGER.trace(String.format("Handled Ping {payload: %s}", Utils.bytesToHex(packet.payload)));
815
} catch (IOException ex) {
816
LOGGER.fatal("Failed sending Pong!", ex);
817
}
818
break;
819
case PongAck:
820
- LOGGER.trace(String.format("Handled PongAck {payload: %s}", Utils.bytesToHex(packet.payload)));
+ // Silent
821
822
case CountryCode:
823
countryCode = new String(packet.payload);
0 commit comments