diff options
author | Scott Moser <smoser@ubuntu.com> | 2010-06-18 10:30:40 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2010-06-18 10:30:40 -0400 |
commit | df7da118d0fff58d4eb3832ded30aefd87bf3594 (patch) | |
tree | 304af6e7b883c9ca4a9a2f7f17ef2153d9d98794 | |
parent | ce74a2bbbd75bd6c3cd3f8cea89b6a1aa428c030 (diff) | |
download | vyos-cloud-init-df7da118d0fff58d4eb3832ded30aefd87bf3594.tar.gz vyos-cloud-init-df7da118d0fff58d4eb3832ded30aefd87bf3594.zip |
add debug log message for 'running' config module
-rwxr-xr-x | cloud-init-cfg.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cloud-init-cfg.py b/cloud-init-cfg.py index 76f34ae0..01c2d4f5 100755 --- a/cloud-init-cfg.py +++ b/cloud-init-cfg.py @@ -83,6 +83,8 @@ def main(): run_args = cfg_mod[2:] try: + log.debug("handling %s with freq=%s and args=%s" % + (name, run_args, freq)) cc.handle(name, run_args, freq=freq) except: import traceback |