Logging not working because start() not called

master
Richard Mitchell 2013-03-10 15:54:58 +00:00
parent 07caef034b
commit ad175c24fd
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ from octoprint.server import Server
class Main(Daemon):
def run(self):
octoprint = Server()
octoprint.run()
octoprint.start()
def main():
daemon = Main('/tmp/octoprint.pid')