Skip to content

Commit

Permalink
fix: Wrong var name
Browse files Browse the repository at this point in the history
  • Loading branch information
bahlo committed Sep 30, 2024
1 parent 7221766 commit 54dd631
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/axiom_py/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def emit(self, record):
self.buffer.append(record.__dict__)
if (
len(self.buffer) >= 1000
or time.monotonic() - self.last_run > self.interval
or time.monotonic() - self.last_flush > self.interval
):
self.flush()

Expand Down

0 comments on commit 54dd631

Please sign in to comment.