Esphome log - warning Component `<unknown>`

Hi,

I read this change ESPHome 2023.7.0 - 19th July 2023 — ESPHome

But I’m wondering if there is a way for me to understand why the component is reported as unknown

[10:02:10][W][component:214]: Component <unknown> took a long time for an operation (0.10 s).
[10:02:10][W][component:215]: Components should block for at most 20-30ms.

These is something I can do to get what is the component?

Yaml please.

esphome:
  includes:
    - ./src/bentel_kyo32.h

# Enable logging
logger:
  level: DEBUG
  baud_rate: 0

uart:
  id: uart_bus
  tx_pin: GPIO1
  rx_pin: GPIO3
  baud_rate: 9600
  data_bits: 8
  parity: EVEN

switch:
  - platform: safe_mode
    name: "ESPKyoGate (Safe Mode)"  

binary_sensor:
  - platform: custom
    lambda: |-
      auto kyo32 = new Bentel_Kyo32(id(uart_bus));
      App.register_component(kyo32);
      return {

        kyo32->kyo_comunication,
        kyo32->warn_wireless,
 [....]        };

    binary_sensors:
      - id: kyo_comunication
    [....]