Tue, 21 Apr 2020 09:59:51 -0500
Improve installation instructions;
move py2app to keychain configuration section.
# # Borgend by Tuomo Valkonen, 2018 # # This is a simple limited memory FIFO log for the logging module # from logging.handlers import BufferingHandler class FIFOHandler(BufferingHandler): def shouldFlush(self, record): return False def emit(self, record): self.buffer.append(record) l=len(self.buffer) if l>self.capacity: self.buffer=self.buffer[(l-self.capacity):(l-1)] def formatAll(self): return [self.format(record) for record in self.buffer]