1
0
mirror of https://github.com/oliexdev/openScale.git synced 2025-08-10 18:54:20 +02:00

comment out debug info

This commit is contained in:
OliE
2017-03-06 20:15:31 +01:00
parent 128abfa2e2
commit 87cc9b4709
2 changed files with 2 additions and 4 deletions

View File

@@ -24,7 +24,6 @@ import android.content.Intent;
import android.content.SharedPreferences;
import android.preference.PreferenceManager;
import android.support.v4.app.NotificationCompat;
import android.util.Log;
import com.health.openscale.R;
import com.health.openscale.gui.preferences.ReminderPreferences;
@@ -38,7 +37,7 @@ public class ReminderBootReceiver extends BroadcastReceiver
{
if (intent.hasExtra(ReminderPreferences.INTENT_EXTRA_ALARM))
{
Log.d(ReminderBootReceiver.class.getSimpleName(), "Received alarm intent");
//Log.d(ReminderBootReceiver.class.getSimpleName(), "Received alarm intent");
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
String notifyText = prefs.getString(ReminderPreferences.PREFERENCE_KEY_REMINDER_NOTIFY_TEXT,

View File

@@ -31,7 +31,6 @@ import android.preference.Preference;
import android.preference.PreferenceFragment;
import android.preference.PreferenceGroup;
import android.preference.PreferenceManager;
import android.util.Log;
import com.health.openscale.R;
import com.health.openscale.gui.ReminderBootReceiver;
@@ -114,7 +113,7 @@ public class ReminderPreferences extends PreferenceFragment
alarmCal.add(Calendar.DAY_OF_YEAR, 7);
}
Log.d(ReminderPreferences.class.getSimpleName(), "Set alarm to " + alarmCal.getTime());
//Log.d(ReminderPreferences.class.getSimpleName(), "Set alarm to " + alarmCal.getTime());
AlarmManager alarmMgr = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
Intent alarmIntent = new Intent(context, ReminderBootReceiver.class);