Logger filter question

I want to filter these messages from my log but I can’t figure out what to specify:

2024-04-27T13:23:25.197894-05:00 eem component [W][component:237]: Component atm90e32.sensor took a long time for an operation (57 ms).
2024-04-27T13:23:25.204239-05:00 eem component [W][component:238]: Components should block for at most 30 ms.
2024-04-27T13:23:34.826792-05:00 eem component [W][component:237]: Component atm90e32.sensor took a long time for an operation (70 ms).
2024-04-27T13:23:34.826792-05:00 eem component [W][component:238]: Components should block for at most 30 ms.
2024-04-27T13:23:37.545675-05:00 eem component [W][component:237]: Component atm90e32.sensor took a long time for an operation (59 ms).
2024-04-27T13:23:37.545675-05:00 eem component [W][component:238]: Components should block for at most 30 ms.
2024-04-27T13:23:37.622424-05:00 eem component [W][component:237]: Component atm90e32.sensor took a long time for an operation (56 ms).
2024-04-27T13:23:37.628228-05:00 eem component [W][component:238]: Components should block for at most 30 ms.
2024-04-27T13:23:38.098696-05:00 eem component [W][component:237]: Component atm90e32.sensor took a long time for an operation (71 ms).
2024-04-27T13:23:38.098696-05:00 eem component [W][component:238]: Components should block for at most 30 ms.
2024-04-27T13:23:48.993736-05:00 eem component [W][component:237]: Component atm90e32.sensor took a long time for an operation (56 ms).

My configuration contains this logger configuration:

logger:
  baud_rate: 921600
  level: INFO
  logs:
    atm90e32.sensor: ERROR

but it doesn’t stop the warnings from the atm90e32 component.

What should my logger entry look like to stop those messages (which come at the rate of 1/second)?

Those lines not from atm90e32.sensor, but from component IMHO.
Try to filter out

logger:
  logs:
    component: ERROR

That did the trick! That sets the level for all components, right? Is there a way to just filter the warnings from atm90e32?

Kinda esphome have component named "component" which writing in log if/when other component executes too long. Yes, this will filter out similar warnings about all components.