Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@ private Task<Void> sendOperationAsync(final ClientOperation clientOperation) {
public Void call() throws Exception {
JSONObject jsonEncoded = clientOperation.getJSONObjectRepresentation();
String jsonString = jsonEncoded.toString();
if (Parse.getLogLevel() <= Parse.LOG_LEVEL_DEBUG) {
Log.d(LOG_TAG, "Sending over websocket: " + jsonString);
}
webSocketClient.send(jsonString);
return null;
}
Expand Down