Update.entity for Command Line Sensor

I found this great solution by tom_I:

https://community.home-assistant.io/t/run-command-line-at-a-fixed-time-and-store-output-in-entity/357363

I set the scan_interval to 157680000 (5 years)

And added this automation:

- id: "1735209965759"
  alias: Update all Neevo readings
  description: ""
  triggers:
    - trigger: time
      at: 00:10:00
  conditions: []
  actions:
    - action: homeassistant.update_entity
      metadata: {}
      data:
        entity_id:
          - sensor.propane_tank_neevo_371_gallons
          - sensor.propane_tank_neevo_125_gallons
          - sensor.propane_tank_neevo_629_gallons
          - sensor.propane_tank_neevo_76_gallons
          - sensor.propane_tank_neevo_255_gallons
          - sensor.propane_tank_neevo_630_gallons
          - sensor.propane_tank_neevo_6_gallons
          - sensor.tank_utility_003200223638383015473830
  mode: single

Is there a way in HA to check if the CL sensor was successfully updated by running this automation?