Skip to content

Commit 28f950e

Browse files
committed
feat(android): revert Log, will be in a dedicated "cleanup" branch
1 parent 8faf9ef commit 28f950e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/android/FileUtils.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ 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;
2930
import android.webkit.MimeTypeMap;
3031
import android.webkit.WebResourceResponse;
3132

@@ -1354,9 +1355,9 @@ public CordovaPluginPathHandler getPathHandler() {
13541355

13551356
return new WebResourceResponse(fileMimeType, null, fileIS);
13561357
} catch (FileNotFoundException e) {
1357-
LOG.e(LOG_TAG, e.getMessage());
1358+
Log.e(LOG_TAG, e.getMessage());
13581359
} catch (IOException e) {
1359-
LOG.e(LOG_TAG, e.getMessage());
1360+
Log.e(LOG_TAG, e.getMessage());
13601361
}
13611362
}
13621363
}

0 commit comments

Comments
 (0)