diff --git a/irctest/controllers/oragono.py b/irctest/controllers/oragono.py index 38b82d4..1827218 100644 --- a/irctest/controllers/oragono.py +++ b/irctest/controllers/oragono.py @@ -205,7 +205,9 @@ class OragonoController(BaseServerController, DirectoryBasedController): def getConfig(self): return copy.deepcopy(self._config) - def addLoggingToConfig(self, config): + def addLoggingToConfig(self, config=None): + if config is None: + config = self.baseConfig() config.update(LOGGING_CONFIG) return config