Skip to content

Commit

Permalink
Remove trace statements
Browse files Browse the repository at this point in the history
  • Loading branch information
nqn committed May 23, 2024
1 parent 08c2df7 commit 941f114
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions log10/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,6 @@ async def log_async(completion_url, log_row):
res = post_request(_url, log_row)
except Exception as e:
logging.warn(f"LOG10: failed to log: {e}. Skipping")
# Print the exception tracompletion_urlceback
traceback.print_tb(e.__traceback__)
return None

elif target_service == "bigquery":
Expand All @@ -206,8 +204,6 @@ async def log_async(completion_url, log_row):

except Exception as e:
logging.warn(f"LOG10: failed to log: {e}. Skipping")
# Print the exception traceback
traceback.print_tb(e.__traceback__)
return None

return completionID
Expand Down

0 comments on commit 941f114

Please sign in to comment.