Skip to content

Commit

Permalink
debugging on ssdp packets
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Prehn committed Jan 17, 2016
1 parent a898b38 commit 43b6382
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -283,10 +283,10 @@ private void handleSSDPPacket(SSDPPacket ssdpPacket) {
//
// @Override
// public void run() {
// Log.d("Connect SDK Socket", "Packet received | type = " + ssdpPacket.type);
Log.d("Connect SDK Socket", "Packet received | type = " + ssdpPacket.getType() + " data = " + ssdpPacket.getData());
//
// for (String key : ssdpPacket.data.keySet()) {
// Log.d("Connect SDK Socket", " " + key + " = " + ssdpPacket.data.get(key));
// for (String key : ssdpPacket.getData().keySet()) {
// Log.d("Connect SDK Socket", " " + key + " = " + ssdpPacket.getData().get(key));
// }
// Log.d("Connect SDK Socket", "__________________________________________");
// }
Expand Down

0 comments on commit 43b6382

Please sign in to comment.