Skip to content

Commit

Permalink
remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
akinwale committed Oct 9, 2020
1 parent ff8ffda commit 53d22dd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion app/src/main/java/io/lbry/browser/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -3241,7 +3241,6 @@ public Boolean doInBackground(Void... params) {

// TODO: Broadcast startup status changes
JSONObject startupStatus = status.getJSONObject("startup_status");
android.util.Log.d(TAG, startupStatus.toString(2));
sdkReady = startupStatus.getBoolean("file_manager") && startupStatus.getBoolean("wallet");
}
} catch (ConnectException | JSONException ex) {
Expand Down
2 changes: 0 additions & 2 deletions app/src/main/java/io/lbry/browser/tasks/CommentListTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ protected List<Comment> doInBackground(Void... voids) {
options.put("visible", true);

JSONObject result = (JSONObject) Lbry.genericApiCall(Lbry.METHOD_COMMENT_LIST, options);
android.util.Log.d("LbryMain", result.toString(2));
JSONArray items = result.getJSONArray("items");

List<Comment> children = new ArrayList<>();
Expand All @@ -78,7 +77,6 @@ protected List<Comment> doInBackground(Void... voids) {
}
} catch (Exception ex) {
error = ex;
android.util.Log.d("LbryMain", ex.toString(), ex);
}
return comments;
}
Expand Down

0 comments on commit 53d22dd

Please sign in to comment.