diff --git a/src/octoprint/__init__.py b/src/octoprint/__init__.py index 67baa4f7..73081ea4 100644 --- a/src/octoprint/__init__.py +++ b/src/octoprint/__init__.py @@ -24,7 +24,7 @@ class Main(Daemon): self._logConf = logConf def run(self): - octoprint = Server(self._configfile, self._basedir, self._host, self._port, self._debug, self._allowRoot) + octoprint = Server(self._configfile, self._basedir, self._host, self._port, self._debug, self._allowRoot, self._logConf, self) octoprint.run() def main():