This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2026-07-27 08:21:13.118 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration midea_ac_lan which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant | |
| 2026-07-27 10:08:33.014 DEBUG (Microwave Oven) [midealocal.device] [29686813967144] refresh_status with cmds: [<midealocal.devices.b0.message.MessageQuery00 object at 0x7f605b95c0>, <midealocal.devices.b0.message.MessageQuery01 object at 0x7f5ff9ec10>, <midealocal.devices.b0.message.MessageQuery31 object at 0x7f5ff9f230>], check_protocol False, device Microwave Oven, type 176, model 0EM34A2E, subtype 2, device_protocol: 3, message_protocol 1, unsupported_protocol: [] | |
| 2026-07-27 10:08:33.014 DEBUG (Microwave Oven) [midealocal.device] [29686813967144] Sending: {'_device_type': <DeviceType.B0: 176>, '_message_type': <MessageType.query: 3>, '_body_type': <ListTypes.X00: 0>, '_message_protocol_version': 1, 'header': 'aa0bb0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Define some unobtrusive instrumentation | |
| module Stripe | |
| module Instrumentation | |
| module Collection | |
| def all(*args) | |
| ActiveSupport::Notifications.instrument("stripe.#{collection_type}.list") { super } | |
| end | |
| def create(*args) | |
| ActiveSupport::Notifications.instrument("stripe.#{collection_type}.create") { super } |