changed logging

This commit is contained in:
Rafael.Timmerberg 2013-05-30 01:02:24 +02:00
commit 525c65edea
2 changed files with 4 additions and 4 deletions

View file

@ -25,7 +25,7 @@ class Command:
'''
try:
self.commandStart = dt.now()
self.log.d("calling command " + str(self.command) + " at " + str(self.commandStart))
self.log.i("calling command " + str(self.command) + " at " + str(self.commandStart))
#self.output=sp.check_output(self.command.split())
process = Popen(self.command, stdout=sp.PIPE, stderr=sp.PIPE, shell=True)
self.output, self.error = process.communicate()