@@ -383,7 +383,7 @@ def get_service_info(self, key: str | BluetoothUUID) -> ServiceInfo | None:
383383 if canonical_key in self ._services :
384384 return self ._services [canonical_key ]
385385 except ValueError :
386- logger . warning ( " UUID normalization failed for service lookup: %s" , search_key )
386+ pass # UUID normalization failed, continue to alias lookup
387387
388388 # Check alias index (normalized to lowercase)
389389 alias_key = self ._service_aliases .get (search_key .lower ())
@@ -411,7 +411,7 @@ def get_characteristic_info(self, identifier: str | BluetoothUUID) -> Characteri
411411 if canonical_key in self ._characteristics :
412412 return self ._characteristics [canonical_key ]
413413 except ValueError :
414- logger . warning ( " UUID normalization failed for characteristic lookup: %s" , search_key )
414+ pass # UUID normalization failed, continue to alias lookup
415415
416416 # Check alias index (normalized to lowercase)
417417 alias_key = self ._characteristic_aliases .get (search_key .lower ())
@@ -439,7 +439,7 @@ def get_descriptor_info(self, identifier: str | BluetoothUUID) -> DescriptorInfo
439439 if canonical_key in self ._descriptors :
440440 return self ._descriptors [canonical_key ]
441441 except ValueError :
442- logger . warning ( " UUID normalization failed for descriptor lookup: %s" , search_key )
442+ pass # UUID normalization failed, continue to alias lookup
443443
444444 # Check alias index (normalized to lowercase)
445445 alias_key = self ._descriptor_aliases .get (search_key .lower ())
0 commit comments