Browse Source

Added logging

main
M66B 6 years ago
parent
commit
732f1fbee0
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      app/src/main/java/eu/faircode/email/FragmentMessage.java

+ 5
- 2
app/src/main/java/eu/faircode/email/FragmentMessage.java View File

@ -442,10 +442,13 @@ public class FragmentMessage extends FragmentEx {
FileOutputStream os = null;
try {
// Get input stream
if (file.exists())
if (file.exists()) {
Log.i(Helper.TAG, "Using cached " + file);
is = new FileInputStream(file);
else
} else {
Log.i(Helper.TAG, "Downloading " + source);
is = new URL(source).openStream();
}
// Decode image from stream
Bitmap bm = BitmapFactory.decodeStream(is);


Loading…
Cancel
Save