Merge pull request #29 from dacarley/resize-root-filesystem

Resize root filesystem, plus some housekeeping
This commit is contained in:
OneFinityCNC
2021-03-10 13:10:56 -05:00
committed by GitHub
11 changed files with 178 additions and 2 deletions

View File

@@ -170,7 +170,7 @@ class Log(object):
if self.path is None: return
if self.f is not None: self.f.close()
self._rotate(self.path)
self.f = open(self.path, 'w')
self.f = open(self.path, 'a')
self.bytes_written = 0