From de1475dbba5056b64d0d89c81fd2e68a8f00104c Mon Sep 17 00:00:00 2001 From: Milos Kozak Date: Wed, 3 Jan 2018 22:28:48 +0100 Subject: [PATCH] remove logging --- .../androidaps/data/QuickWizardEntry.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app/src/main/java/info/nightscout/androidaps/data/QuickWizardEntry.java b/app/src/main/java/info/nightscout/androidaps/data/QuickWizardEntry.java index 70dd37a6ab..08d1a7295a 100644 --- a/app/src/main/java/info/nightscout/androidaps/data/QuickWizardEntry.java +++ b/app/src/main/java/info/nightscout/androidaps/data/QuickWizardEntry.java @@ -181,7 +181,7 @@ public class QuickWizardEntry { try { return storage.getInt("useBG"); } catch (JSONException e) { - log.error("Unhandled exception", e); + //log.error("Unhandled exception", e); } return YES; } @@ -190,7 +190,7 @@ public class QuickWizardEntry { try { return storage.getInt("useCOB"); } catch (JSONException e) { - log.error("Unhandled exception", e); + //log.error("Unhandled exception", e); } return NO; } @@ -199,7 +199,7 @@ public class QuickWizardEntry { try { return storage.getInt("useBolusIOB"); } catch (JSONException e) { - log.error("Unhandled exception", e); + //log.error("Unhandled exception", e); } return YES; } @@ -208,7 +208,7 @@ public class QuickWizardEntry { try { return storage.getInt("useBasalIOB"); } catch (JSONException e) { - log.error("Unhandled exception", e); + //log.error("Unhandled exception", e); } return YES; } @@ -217,7 +217,7 @@ public class QuickWizardEntry { try { return storage.getInt("useTrend"); } catch (JSONException e) { - log.error("Unhandled exception", e); + //log.error("Unhandled exception", e); } return NO; } @@ -226,7 +226,7 @@ public class QuickWizardEntry { try { return storage.getInt("useSuperBolus"); } catch (JSONException e) { - log.error("Unhandled exception", e); + //log.error("Unhandled exception", e); } return NO; } @@ -235,7 +235,7 @@ public class QuickWizardEntry { try { return storage.getInt("useTempTarget"); } catch (JSONException e) { - log.error("Unhandled exception", e); + //log.error("Unhandled exception", e); } return NO; }