Skip to content

Commit

Permalink
feat(android): only use cordova LOG
Browse files Browse the repository at this point in the history
  • Loading branch information
ath0mas committed Dec 24, 2023
1 parent 839210a commit b751457
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/android/FileUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ Licensed to the Apache Software Foundation (ASF) under one
import android.os.Build;
import android.os.Environment;
import android.util.Base64;
import android.util.Log;
import android.webkit.MimeTypeMap;
import android.webkit.WebResourceResponse;

Expand Down Expand Up @@ -1296,9 +1295,9 @@ public CordovaPluginPathHandler getPathHandler() {

return new WebResourceResponse(fileMimeType, null, fileIS);
} catch (FileNotFoundException e) {
Log.e(LOG_TAG, e.getMessage());
LOG.e(LOG_TAG, e.getMessage());
} catch (IOException e) {
Log.e(LOG_TAG, e.getMessage());
LOG.e(LOG_TAG, e.getMessage());
}
}
}
Expand Down

0 comments on commit b751457

Please sign in to comment.