feat: add more logs to agent_instance.py

This commit is contained in:
Ashwin Bharambe 2025-03-03 16:15:47 -08:00
parent ee5e9b935a
commit 0a76ece249
3 changed files with 12 additions and 12 deletions

View file

@ -247,7 +247,6 @@ def sort_providers_by_deps(
logcat.debug("core", f"Resolved {len(sorted_providers)} providers")
for api_str, provider in sorted_providers:
logcat.debug("core", f" {api_str} => {provider.provider_id}")
logcat.debug("core", "")
return sorted_providers

View file

@ -436,7 +436,7 @@ def main():
)
)
logcat.debug("server", f"Serving API {api_str}")
logcat.debug("server", f"serving APIs: {apis_to_serve}")
app.exception_handler(RequestValidationError)(global_exception_handler)
app.exception_handler(Exception)(global_exception_handler)