From ffe4512b7de81f889f0869cc312009d4372dc11e Mon Sep 17 00:00:00 2001 From: mrT23 Date: Mon, 26 Feb 2024 15:16:59 +0200 Subject: [PATCH] small log improvement --- pr_agent/servers/github_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pr_agent/servers/github_app.py b/pr_agent/servers/github_app.py index b365bfd6..83783942 100644 --- a/pr_agent/servers/github_app.py +++ b/pr_agent/servers/github_app.py @@ -273,7 +273,7 @@ async def _perform_auto_commands_github(commands_conf: str, agent: PRAgent, body other_args = update_settings_from_args(args) new_command = ' '.join([command] + other_args) with get_logger().contextualize(**log_context): - get_logger().info(f"New PR opened. Performing auto command '{new_command}', for {api_url=}") + get_logger().info(f"{commands_conf}. Performing auto command '{new_command}', for {api_url=}") await agent.handle_request(api_url, new_command)