From 08e66008801f16a0921a08626ce397e7bcb47a5a Mon Sep 17 00:00:00 2001 From: Sylvia van Os Date: Wed, 22 May 2024 18:08:37 +0200 Subject: [PATCH] Lower severity of import/export starting log entries to debug Co-authored-by: FC (Fay) Stegerman --- .../main/java/protect/card_locker/ImportExportActivity.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/protect/card_locker/ImportExportActivity.java b/app/src/main/java/protect/card_locker/ImportExportActivity.java index 50e7b41e1..2a5a3d02c 100644 --- a/app/src/main/java/protect/card_locker/ImportExportActivity.java +++ b/app/src/main/java/protect/card_locker/ImportExportActivity.java @@ -87,7 +87,7 @@ public class ImportExportActivity extends CatimaAppCompatActivity { public void run() { try { OutputStream writer = getContentResolver().openOutputStream(uri); - Log.e(TAG, "Starting file export with: " + result); + Log.d(TAG, "Starting file export with: " + result); startExport(writer, uri, exportPassword.toCharArray(), true); } catch (IOException e) { Log.e(TAG, "Failed to export file: " + result, e); @@ -173,7 +173,7 @@ public class ImportExportActivity extends CatimaAppCompatActivity { public void run() { try { InputStream reader = getContentResolver().openInputStream(uri); - Log.e(TAG, "Starting file import with: " + uri); + Log.d(TAG, "Starting file import with: " + uri); startImport(reader, uri, importDataFormat, password, true); } catch (IOException e) { Log.e(TAG, "Failed to import file: " + uri, e);