Skip to content

Commit

Permalink
Merge branch 'main' into fix-ensemble-sklearn-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored May 22, 2024
2 parents e6c2a2f + ac28232 commit 08a3971
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion newrelic/hooks/logger_loguru.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def _nr_log_forwarder(message_instance):
try:
time = record.get("time", None)
if time:
time = int(time.timestamp())
time = int(time.timestamp()*1000)
record_log_event(message, level_name, time, attributes=attrs)
except Exception:
pass
Expand Down

0 comments on commit 08a3971

Please sign in to comment.