Add --debug option to bin/hooke and log CommandEngine.run_command()
authorW. Trevor King <wking@drexel.edu>
Thu, 12 Aug 2010 15:12:29 +0000 (11:12 -0400)
committerW. Trevor King <wking@drexel.edu>
Thu, 12 Aug 2010 15:12:29 +0000 (11:12 -0400)
hooke/config.py
hooke/engine.py
hooke/hooke.py

index cba24d19399a5b854de62365af22f680307e17c3..5948974f101c4ef647612f121fb3c6c69cd34af6 100644 (file)
@@ -106,7 +106,7 @@ DEFAULT_SETTINGS = [
     Setting('logger_hooke', 'qualname', 'hooke'),
     Setting('handler_hand1', help='Configure the default log handler, see\nhttp://docs.python.org/library/logging.html#configuration-file-format', wrap=False),
     Setting('handler_hand1', 'class', 'StreamHandler'),
-    Setting('handler_hand1', 'level', 'WARN'), #NOTSET'),
+    Setting('handler_hand1', 'level', 'WARN'),
     Setting('handler_hand1', 'formatter', 'form1'),
     Setting('handler_hand1', 'args', '(sys.stderr,)'),
     Setting('formatter_form1', help='Configure the default log formatter, see\nhttp://docs.python.org/library/logging.html#configuration-file-format', wrap=False),
index b4381298178f59723b540cfc901a7968ac93e1c1..5bc2f6efb5728d8f83c047374714e96327b95273 100644 (file)
@@ -72,7 +72,8 @@ class CommandEngine (object):
                     'engine closing, placed hooke instance in return queue')
                 break
             assert isinstance(msg, CommandMessage), type(msg)
-            log.debug('engine running %s' % msg.command.name)
+            log.debug('engine running %s with %s'
+                      % (msg.command.name, msg.arguments))
             msg.command.run(hooke, ui_to_command_queue, command_to_ui_queue,
                             **msg.arguments)
 
@@ -86,4 +87,6 @@ class CommandEngine (object):
         communication queues, so make sure they will not need user
         interaction.
         """
+        log.debug('engine running internal %s with %s'
+                  % (command.name, arguments))
         command.run(hooke, NullQueue(), NullQueue(), arguments)
index a8079a9a2e498ca19b0db75730ab4cd8bc202252..b16a800c738005b2e3ecc50079430f914daad8da 100644 (file)
@@ -196,6 +196,9 @@ def main():
         '--command-no-exit', dest='command_exit',
         action='store_false', default=True,
         help="Don't exit after running a script or commands.")
+    p.add_option(
+        '--debug', dest='debug', action='store_true', default=False,
+        help="Enable debug logging.")
     options,arguments = p.parse_args()
     if len(arguments) > 0:
         print >> sys.stderr, 'More than 0 arguments to %s: %s' \
@@ -209,6 +212,10 @@ def main():
     if options.version == True:
         print version()
         sys.exit(0)
+    if options.debug == True:
+        hooke.config.set(
+            section='handler_hand1', option='level', value='NOTSET')
+        hooke.load_log()
     if options.script != None:
         with open(os.path.expanduser(options.script), 'r') as f:
             options.commands.extend(f.readlines())