File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed
app/src/main/java/io/lbry/browser Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -3241,7 +3241,6 @@ public Boolean doInBackground(Void... params) {
3241
3241
3242
3242
// TODO: Broadcast startup status changes
3243
3243
JSONObject startupStatus = status .getJSONObject ("startup_status" );
3244
- android .util .Log .d (TAG , startupStatus .toString (2 ));
3245
3244
sdkReady = startupStatus .getBoolean ("file_manager" ) && startupStatus .getBoolean ("wallet" );
3246
3245
}
3247
3246
} catch (ConnectException | JSONException ex ) {
Original file line number Diff line number Diff line change @@ -52,7 +52,6 @@ protected List<Comment> doInBackground(Void... voids) {
52
52
options .put ("visible" , true );
53
53
54
54
JSONObject result = (JSONObject ) Lbry .genericApiCall (Lbry .METHOD_COMMENT_LIST , options );
55
- android .util .Log .d ("LbryMain" , result .toString (2 ));
56
55
JSONArray items = result .getJSONArray ("items" );
57
56
58
57
List <Comment > children = new ArrayList <>();
@@ -78,7 +77,6 @@ protected List<Comment> doInBackground(Void... voids) {
78
77
}
79
78
} catch (Exception ex ) {
80
79
error = ex ;
81
- android .util .Log .d ("LbryMain" , ex .toString (), ex );
82
80
}
83
81
return comments ;
84
82
}
You can’t perform that action at this time.
0 commit comments