mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-07-04 04:40:38 +08:00
Lower log level for missing code suggestions from error to warning
This commit is contained in:
@ -100,7 +100,7 @@ class PRCodeSuggestions:
|
|||||||
data = {"code_suggestions": []}
|
data = {"code_suggestions": []}
|
||||||
|
|
||||||
if data is None or 'code_suggestions' not in data or not data['code_suggestions']:
|
if data is None or 'code_suggestions' not in data or not data['code_suggestions']:
|
||||||
get_logger().error('No code suggestions found for the PR.')
|
get_logger().warning('No code suggestions found for the PR.')
|
||||||
pr_body = "## PR Code Suggestions ✨\n\nNo code suggestions found for the PR."
|
pr_body = "## PR Code Suggestions ✨\n\nNo code suggestions found for the PR."
|
||||||
get_logger().debug(f"PR output", artifact=pr_body)
|
get_logger().debug(f"PR output", artifact=pr_body)
|
||||||
if self.progress_response:
|
if self.progress_response:
|
||||||
|
Reference in New Issue
Block a user