mirror of
https://github.com/jfoucry/Pilldroid.git
synced 2024-11-22 04:29:22 +01:00
Fix small log.
This commit is contained in:
parent
5d9238d001
commit
1754e9fe5b
1 changed files with 2 additions and 2 deletions
|
@ -408,7 +408,7 @@ public class MedicamentListActivity extends AppCompatActivity {
|
|||
}
|
||||
|
||||
private void scheduleNotification(Notification notification, long delay) {
|
||||
Log.i(TAG, "scheduleNotification delay == " + 30000);
|
||||
Log.d(TAG, "scheduleNotification delay == " + delay);
|
||||
|
||||
Intent notificationIntent = new Intent(this, NotificationPublisher.class);
|
||||
notificationIntent.putExtra(NOTIFICATION_ID, 1);
|
||||
|
@ -423,7 +423,7 @@ public class MedicamentListActivity extends AppCompatActivity {
|
|||
}
|
||||
|
||||
private Notification getNotification(String content) {
|
||||
Log.i(TAG, "getNotification");
|
||||
Log.d(TAG, "content = " + content);
|
||||
|
||||
NotificationCompat.Builder builder = new NotificationCompat.Builder(this, CHANNEL_ID)
|
||||
.setContentTitle(getAppName())
|
||||
|
|
Loading…
Reference in a new issue