From 28f950e30eca208ae2d9556c66e079ee10d93db0 Mon Sep 17 00:00:00 2001 From: Alexis THOMAS Date: Sun, 24 Dec 2023 17:48:40 +0100 Subject: [PATCH] feat(android): revert Log, will be in a dedicated "cleanup" branch --- src/android/FileUtils.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/android/FileUtils.java b/src/android/FileUtils.java index c3ed3911..35281f7b 100644 --- a/src/android/FileUtils.java +++ b/src/android/FileUtils.java @@ -26,6 +26,7 @@ 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; @@ -1354,9 +1355,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()); } } }