diff --git a/frigate/config.py b/frigate/config.py index f9e60091e..90a6be3c4 100644 --- a/frigate/config.py +++ b/frigate/config.py @@ -854,12 +854,12 @@ def verify_recording_segments_setup_with_reasonable_time( if seg_arg_index < 0: raise ValueError( - f"Camera {camera_config.name} has no segment_time arg, segment args are required for record." + f"Camera {camera_config.name} has no segment_time in recording output args, segment args are required for record." ) if int(record_args[seg_arg_index + 1]) > 60: raise ValueError( - f"Camera {camera_config.name} has invalid segment_time, segment_time must be 60 or less." + f"Camera {camera_config.name} has invalid segment_time output arg, segment_time must be 60 or less." )