Flawed HA logging (or older duplicated hidden versions of automations kicking off)?

Just got my a__ handed to me as the WAF just went hugely negative to almost “in the doghouse”. While spouse in the shower the bathroom lights go off. Motion sensor points at the whole room (shower is mostly out of sight of the sensor). Motion sensor starts a timer which controls the lights (when (re)started, lights on, when finished or cancelled, lights off). Below automation is normally only kicked off when the motion is sensed anyway - of course I tried to research what happened… I have an automation with this code:

alias: Bathroom Light Timer (Re)Started -> If Automation Enabled -> Bathroom Light On
description: ""
trigger:
  - platform: event
    event_type: timer.started
    event_data:
      entity_id: timer.bathroom_light_timer
condition:
  - condition: state
    entity_id: input_select.automation_bathroom_is
    state: Enabled
  - condition: state
    entity_id: light.bathroom_shelly_1_relay
    state: "off"
action:
  - service: light.turn_on
    data: {}
    target:
      entity_id:
        - light.bathroom_shelly_1_relay
mode: parallel

and this shows in the logs:

Has anyone else discovered discrepancies like with with the logs? Is it possibly there are older ‘copies’ of an automation running that are still in my HA config that are not shown? Why else would the logging show things like that top row (instead of just the row below it)?