Skip to content

Commit

Permalink
reduce log level to D
Browse files Browse the repository at this point in the history
  • Loading branch information
or-else committed Nov 11, 2022
1 parent 787a0c6 commit 93a4ae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/co/tinode/tindroid/MessagesAdapter.java
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@ private boolean verifyStoragePermissions() {
// Check if we have write permission
if (!UiUtils.isPermissionGranted(mActivity, Manifest.permission.WRITE_EXTERNAL_STORAGE)) {
// We don't have permission so prompt the user
Log.i(TAG, "No permission to write to storage");
Log.d(TAG, "No permission to write to storage");
ActivityCompat.requestPermissions(mActivity, PERMISSIONS_STORAGE, REQUEST_EXTERNAL_STORAGE);
return false;
}
Expand Down

0 comments on commit 93a4ae0

Please sign in to comment.