Run check background aonly fter scan variables are stored

This commit is contained in:
Julian Stirling 2025-04-10 11:45:57 +01:00
parent 83d2930d1f
commit 040373ef88
2 changed files with 9 additions and 7 deletions

View file

@ -76,7 +76,7 @@ class OFMHandler(logging.Handler):
def append_record(self, record):
"""
Use the built in formatter to format the record, then save
it to an array. Pop any in excess of the mamimum number of logs
it to an array. Pop any in excess of the maximum number of logs
"""
self._log.append(self.format(record))
while len(self._log) > self._max_logs: