From 2ee3a86148279837479f90c6ad91768adb5bcf6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pascal=20Pfl=C3=BCgner?= Date: Wed, 20 May 2026 13:27:31 +0200 Subject: [PATCH] refactor: change task insertion logging level to debug Reduce log verbosity by adjusting task insertion log from info to debug level. --- lufa/api_v1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lufa/api_v1.py b/lufa/api_v1.py index bd12b95..289fc5b 100644 --- a/lufa/api_v1.py +++ b/lufa/api_v1.py @@ -157,7 +157,7 @@ def tasks_post(data): return jsonify({"error": "task already exists"}), 409 repository.add_task(data["ansible_uuid"], data["tower_job_id"], data["task_name"]) - current_app.logger.info("inserted task: %s", data["ansible_uuid"]) + current_app.logger.debug("inserted task: %s", data["ansible_uuid"]) return jsonify({"ok": "yes"}), 201