Skip to content

Commit 53d22dd

Browse files
committed
remove debug logs
1 parent ff8ffda commit 53d22dd

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

app/src/main/java/io/lbry/browser/MainActivity.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3241,7 +3241,6 @@ public Boolean doInBackground(Void... params) {
32413241

32423242
// TODO: Broadcast startup status changes
32433243
JSONObject startupStatus = status.getJSONObject("startup_status");
3244-
android.util.Log.d(TAG, startupStatus.toString(2));
32453244
sdkReady = startupStatus.getBoolean("file_manager") && startupStatus.getBoolean("wallet");
32463245
}
32473246
} catch (ConnectException | JSONException ex) {

app/src/main/java/io/lbry/browser/tasks/CommentListTask.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ protected List<Comment> doInBackground(Void... voids) {
5252
options.put("visible", true);
5353

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

5857
List<Comment> children = new ArrayList<>();
@@ -78,7 +77,6 @@ protected List<Comment> doInBackground(Void... voids) {
7877
}
7978
} catch (Exception ex) {
8079
error = ex;
81-
android.util.Log.d("LbryMain", ex.toString(), ex);
8280
}
8381
return comments;
8482
}

0 commit comments

Comments
 (0)