Add logger configuration options.
[hooke.git] / hooke / plugin / config.py
index 82ba03844a013160a603796880269875ba5e8499..21fd56ae2264f0ecdc6c0e8ad18efbeadab2e1d8 100644 (file)
@@ -87,8 +87,10 @@ class SetCommand (Command):
     def _run(self, hooke, inqueue, outqueue, params):
        hooke.config.set(params['section'], params['option'], params['value'])
         # push config changes
+        hooke.load_log()
         hooke.load_plugins()
         hooke.load_drivers()
+        hooke.load_ui()  # for post-HookeRunner Hooke return.
         # notify UI to update config
         outqueue.put(ReloadUserInterfaceConfig(hooke.config))