summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormartinko2011-11-08 11:29:48 +0000
committermartinko2011-11-08 11:29:48 +0000
commitf4114d9ffb7c5480e486ee322456a3642217ae97 (patch)
tree89c748e44c06c18ca672642d1d1f0e7dda7fa1d3
parent1b5aa93072de7d657157b37a46391baaa9e02cd8 (diff)
scriptmgr.py: fix small logging bug
-rwxr-xr-xscripts/scriptmgr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/scriptmgr.py b/scripts/scriptmgr.py
index 0eef0529..75e33bea 100755
--- a/scripts/scriptmgr.py
+++ b/scripts/scriptmgr.py
@@ -181,7 +181,7 @@ class ScriptMgr(skytools.DBScript):
os.chdir(job['cwd'])
pidfile = job['pidfile']
if not pidfile:
- self.log.warning("No pidfile for %s cannot launch")
+ self.log.warning("No pidfile for %s, cannot launch" % job_name)
return 0
if os.path.isfile(pidfile):
if skytools.signal_pidfile(pidfile, 0):