Tweaks to logging

This commit is contained in:
2021-03-23 16:30:20 -04:00
parent 3969d68545
commit ddf648a334
2 changed files with 3 additions and 4 deletions

View File

@ -84,8 +84,8 @@ class JSONlog(LOGlog):
def __init__(self):
super().__init__()
def make(self, dire="logs", basename="log-"):
return super().make(dire, basename, "json")
def make(self, dire="logs", basename="log-", ext="json"):
return super().make(dire, basename, ext)
def open(self, filename):
super().open(filename)