Automation To Create Device Tracker Spamming Logs

I have a webhook data source that provides seperate Longitude and Latitude entries, so I am using a trigger automation to create a device tracker. That works fine. However in the logs I get this error:

Logger: homeassistant.components.automation.car_location
Source: helpers/script.py:1509
Integration: Automation (documentation, issues)
First occurred: September 21, 2023 at 17:04:56 (2398 occurrences)
Last logged: 21:51:05

Car Location: Already running

Is there anything I can do with the automation config to stop that from occuring?
Or is there a better way to create the device tracker coordinates from seperate Long/Lat ?

alias: "Car Location"
description: ""
trigger:
  - platform: state
    entity_id:
      - sensor.car_latitude
      - sensor.car_longitude
condition: []
action:
  - service: device_tracker.see
    data:
      dev_id: car
      gps:
        - "{{ states('sensor.car_latitude') }}"
        - "{{ states('sensor.car_longitude') }}"
mode: single