From 17325dd43f2b746f6c10cf7f66d1bd03f27e4f35 Mon Sep 17 00:00:00 2001 From: Bartosz Przybylski Date: Sat, 21 Nov 2015 13:11:34 +0100 Subject: [PATCH] Update Log_OC.java Fix typos --- src/com/owncloud/android/lib/common/utils/Log_OC.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/owncloud/android/lib/common/utils/Log_OC.java b/src/com/owncloud/android/lib/common/utils/Log_OC.java index 71e3d02e..5aa85cc1 100644 --- a/src/com/owncloud/android/lib/common/utils/Log_OC.java +++ b/src/com/owncloud/android/lib/common/utils/Log_OC.java @@ -124,12 +124,12 @@ public class Log_OC { isEnabled = false; } catch (IOException e) { - // Because we are stopping logging, we only lon to Android console. + // Because we are stopping logging, we only log to Android console. Log.e("OC_Log", "Closing log file failed: ", e); } catch (Exception e) { // This catch should never fire because we do null check on mBuf. // But just for the sake of stability let's log this odd situation. - // Because we are stopping logging, we only lon to Android console. + // Because we are stopping logging, we only log to Android console. Log.e("OC_Log", "Stopping logging failed: ", e); } }