You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Nudge/Utilities/Utils.swift
+4-4
Original file line number
Diff line number
Diff line change
@@ -19,9 +19,9 @@ import SystemConfiguration
19
19
structAppStateManager{
20
20
func activateNudge(){
21
21
ifOptionalFeatureVariables.honorFocusModes {
22
-
LogManager.info("honorFocusModes is configured - checking focus status. Warning: This feature may be unstable.", logger: utilsLog)
22
+
LogManager.notice("honorFocusModes is configured - checking focus status. Warning: This feature may be unstable.", logger: utilsLog)
23
23
ifisFocusModeEnabled(){
24
-
LogManager.info("Device has focus modes set - bypassing activation event", logger: utilsLog)
24
+
LogManager.notice("Device has focus modes set - bypassing activation event", logger: utilsLog)
25
25
return
26
26
}
27
27
}
@@ -96,7 +96,7 @@ struct AppStateManager {
96
96
97
97
// Bail Nudge if within gracePeriodLaunchDelay
98
98
if gracePeriodLaunchDelay > gracePeriodPathCreationTimeInHours {
99
-
LogManager.info("gracePeriodPath (\(gracePeriodPath)) within gracePeriodLaunchDelay (\(gracePeriodLaunchDelay)) - File age is \(gracePeriodPathCreationTimeInHours) hours", logger: uiLog)
99
+
LogManager.notice("gracePeriodPath (\(gracePeriodPath)) within gracePeriodLaunchDelay (\(gracePeriodLaunchDelay)) - File age is \(gracePeriodPathCreationTimeInHours) hours", logger: uiLog)
100
100
nudgePrimaryState.shouldExit =true
101
101
return currentDate
102
102
}else{
@@ -106,7 +106,7 @@ struct AppStateManager {
106
106
if gracePeriodInstallDelay > gracePeriodPathCreationTimeInHours {
107
107
if currentDate > originalRequiredInstallationDate {
LogManager.info("Device permitted for gracePeriodInstallDelay - setting date from: \(originalRequiredInstallationDate) to: \(requiredInstallationDate)", logger: uiLog)
109
+
LogManager.notice("Device permitted for gracePeriodInstallDelay - setting date from: \(originalRequiredInstallationDate) to: \(requiredInstallationDate)", logger: uiLog)
0 commit comments