From f1dd6db7015eb143acad5042d940622366f64945 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Thu, 12 Feb 2026 16:41:07 -0800
Subject: [PATCH] Removed unnecessary log message
---
src/hidapi/ios/hid.m | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/hidapi/ios/hid.m b/src/hidapi/ios/hid.m
index d6f6d763630a0..2c78227b0ffe5 100644
--- a/src/hidapi/ios/hid.m
+++ b/src/hidapi/ios/hid.m
@@ -858,7 +858,7 @@ - (void)peripheral:(CBPeripheral *)peripheral didWriteValueForCharacteristic:(CB
- (void)peripheral:(CBPeripheral *)peripheral didUpdateNotificationStateForCharacteristic:(CBCharacteristic *)characteristic error:(NSError *)error
{
- NSLog( @"didUpdateNotificationStateForCharacteristic %@ (%@)", characteristic, error );
+ //NSLog( @"didUpdateNotificationStateForCharacteristic %@ (%@)", characteristic, error );
}
@end