diff --git a/src/android/Zip.java b/src/android/Zip.java index 4b5de862..f97a2928 100644 --- a/src/android/Zip.java +++ b/src/android/Zip.java @@ -9,17 +9,15 @@ import java.util.zip.ZipEntry; import java.util.zip.ZipInputStream; - import android.net.Uri; import org.apache.cordova.CallbackContext; import org.apache.cordova.CordovaPlugin; import org.apache.cordova.CordovaResourceApi.OpenForReadResult; +import org.apache.cordova.LOG; import org.apache.cordova.PluginResult; import org.json.JSONException; import org.json.JSONObject; -import android.util.Log; - public class Zip extends CordovaPlugin { private static final String LOG_TAG = "Zip"; @@ -67,7 +65,7 @@ private void unzipSync(CordovaArgs args, CallbackContext callbackContext) { if (tempFile == null || !tempFile.exists()) { String errorMessage = "Zip file does not exist"; callbackContext.error(errorMessage); - Log.e(LOG_TAG, errorMessage); + LOG.e(LOG_TAG, errorMessage); return; } @@ -77,7 +75,7 @@ private void unzipSync(CordovaArgs args, CallbackContext callbackContext) { if (outputDir == null || (!outputDir.exists() && !outputDir.mkdirs())){ String errorMessage = "Could not create output directory"; callbackContext.error(errorMessage); - Log.e(LOG_TAG, errorMessage); + LOG.e(LOG_TAG, errorMessage); return; } @@ -128,7 +126,7 @@ private void unzipSync(CordovaArgs args, CallbackContext callbackContext) { File file = new File(outputDirectory + compressedName); file.getParentFile().mkdirs(); if(file.exists() || file.createNewFile()){ - Log.w("Zip", "extracting: " + file.getPath()); + LOG.w(LOG_TAG, "extracting: " + file.getPath()); FileOutputStream fout = new FileOutputStream(file); int count; while ((count = zis.read(buffer)) != -1) @@ -155,7 +153,7 @@ private void unzipSync(CordovaArgs args, CallbackContext callbackContext) { } catch (Exception e) { String errorMessage = "An error occurred while unzipping."; callbackContext.error(errorMessage); - Log.e(LOG_TAG, errorMessage, e); + LOG.e(LOG_TAG, errorMessage, e); } finally { if (inputStream != null) { try {