mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-15 12:25:18 +00:00
fix exception printing
This commit is contained in:
parent
12167bc3a1
commit
ceaff2a269
1 changed files with 1 additions and 1 deletions
|
|
@ -141,7 +141,7 @@ def get_main_pr_language(languages, files) -> str:
|
||||||
main_language_str = top_language
|
main_language_str = top_language
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logging.info(e)
|
logging.exception(e)
|
||||||
pass
|
pass
|
||||||
|
|
||||||
return main_language_str
|
return main_language_str
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue