diff options
author | martinko | 2014-07-31 07:55:51 +0000 |
---|---|---|
committer | martinko | 2014-07-31 07:55:51 +0000 |
commit | 16a1376beebdf1b238c119695b843ea32ccfc7ce (patch) | |
tree | 303d7858b14473b31b7249d388c0ccaface236c3 | |
parent | d17c79600a971a0b0b8aa67acf6df117ae0f99e2 (diff) |
BaseScript: added log msg about script's normal shutdown
-rw-r--r-- | python/skytools/scripting.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/skytools/scripting.py b/python/skytools/scripting.py index 77c1bec5..23660ced 100644 --- a/python/skytools/scripting.py +++ b/python/skytools/scripting.py @@ -671,7 +671,7 @@ class BaseScript(object): In case of daemon, if will be called in same process as work(), unlike __init__(). """ - pass + self.log.info("Script finished, exiting") # define some aliases (short-cuts / backward compatibility cruft) stat_add = stat_put # Old, deprecated function. |