File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -275,11 +275,9 @@ public final class Footprint: @unchecked Sendable {
275
275
// ... and enough time has passed to send out
276
276
// notifications again. Approximately the heartbeat interval.
277
277
guard memory. timestamp - _memory. timestamp >= _heartbeatInterval else {
278
- print ( " Footprint.state changed but not enough time ( \( memory. timestamp - _memory. timestamp) ) has changed to deploy it. " )
279
278
return nil
280
279
}
281
280
282
- print ( " Footprint changed after \( memory. timestamp - _memory. timestamp) " )
283
281
let oldMemory = _memory
284
282
_memory = memory
285
283
@@ -297,9 +295,6 @@ public final class Footprint: @unchecked Sendable {
297
295
// make changes that might touch the UI.
298
296
if changeSet. contains ( . pressure) || changeSet. contains ( . state) {
299
297
300
- print ( " Footprint changes \( changeSet) " )
301
- print ( " Footprint.state \( memory. state) " )
302
- print ( " Footprint.pressure \( memory. pressure) " )
303
298
DispatchQueue . main. async {
304
299
NotificationCenter . default. post ( name: Footprint . memoryDidChangeNotification, object: nil , userInfo: [
305
300
Footprint . newMemoryKey: memory,
You can’t perform that action at this time.
0 commit comments