Skip to content

Commit

Permalink
Fix logging messages
Browse files Browse the repository at this point in the history
  • Loading branch information
logresearch committed Jul 2, 2024
1 parent bdc86af commit cc377cb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1017,9 +1017,9 @@ public static File fromContentUri(@NonNull Uri uri) {
}
File pathFile = new File(uri.getPath().substring(FILE_PROVIDER_PREFIX.length() + 1));
if (!pathFile.exists()) {
LOG.warn("failed to navigate to path {}", pathFile.getPath());
LOG.warn("Failed to navigate to the initial path: {}", pathFile.getPath());
pathFile = new File(uri.getPath());
LOG.warn("trying to navigate to path {}", pathFile.getPath());
LOG.warn("Attempting to navigate to the fallback path: {}", pathFile.getPath());
}
return pathFile;
}
Expand Down

0 comments on commit cc377cb

Please sign in to comment.