Skip to content

Commit

Permalink
fix: fix log severity for start_daq_job
Browse files Browse the repository at this point in the history
  • Loading branch information
furkan-bilgin committed Oct 10, 2024
1 parent 4f6c28e commit c992322
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/daq/daq_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def load_daq_jobs(job_config_dir: str) -> list[DAQJob]:


def start_daq_job(daq_job: DAQJob) -> DAQJobThread:
logging.debug(f"Starting {type(daq_job).__name__}")
logging.info(f"Starting {type(daq_job).__name__}")
thread = threading.Thread(target=daq_job.start, daemon=True)
thread.start()

Expand Down

0 comments on commit c992322

Please sign in to comment.