From 19edc7f0313e8e5e4408e61ca70a03677ae7361d Mon Sep 17 00:00:00 2001 From: EunsuSeo01 Date: Tue, 24 Oct 2023 06:44:44 +0900 Subject: [PATCH] =?UTF-8?q?[Chore]=20#196=20=EB=A1=9C=EC=BB=AC=20=EC=95=8C?= =?UTF-8?q?=EB=A6=BC=20=EA=B4=80=EB=A0=A8=20=EB=A1=9C=EA=B7=B8=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Milestone/Milestone/Global/Support/AppDelegate.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Milestone/Milestone/Global/Support/AppDelegate.swift b/Milestone/Milestone/Global/Support/AppDelegate.swift index 2d234f1..0222b69 100644 --- a/Milestone/Milestone/Global/Support/AppDelegate.swift +++ b/Milestone/Milestone/Global/Support/AppDelegate.swift @@ -104,6 +104,7 @@ class LocalNotificationHelper: NSObject, UNUserNotificationCenterDelegate { func printPendingNotification() { UNUserNotificationCenter.current().getPendingNotificationRequests { requests in + print("---Pending Notifications---") for request in requests { print("Identifier: \(request.identifier)") print("Title: \(request.content.title)") @@ -113,6 +114,7 @@ class LocalNotificationHelper: NSObject, UNUserNotificationCenterDelegate { } } UNUserNotificationCenter.current().getDeliveredNotifications { requests in + print("---Delivered Notifications---") for req in requests { let request = req.request print("Identifier: \(request.identifier)")