Skip to content

Commit b751457

Browse files
committed
feat(android): only use cordova LOG
1 parent 839210a commit b751457

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/android/FileUtils.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ Licensed to the Apache Software Foundation (ASF) under one
2626
import android.os.Build;
2727
import android.os.Environment;
2828
import android.util.Base64;
29-
import android.util.Log;
3029
import android.webkit.MimeTypeMap;
3130
import android.webkit.WebResourceResponse;
3231

@@ -1296,9 +1295,9 @@ public CordovaPluginPathHandler getPathHandler() {
12961295

12971296
return new WebResourceResponse(fileMimeType, null, fileIS);
12981297
} catch (FileNotFoundException e) {
1299-
Log.e(LOG_TAG, e.getMessage());
1298+
LOG.e(LOG_TAG, e.getMessage());
13001299
} catch (IOException e) {
1301-
Log.e(LOG_TAG, e.getMessage());
1300+
LOG.e(LOG_TAG, e.getMessage());
13021301
}
13031302
}
13041303
}

0 commit comments

Comments
 (0)