mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-25 13:32:22 +03:00
log fixing
This commit is contained in:
parent
54c73ac04b
commit
6009755066
1 changed files with 3 additions and 5 deletions
|
@ -28,14 +28,13 @@ class TaskManager(object):
|
||||||
self.scheduler.save_and_add_job(task)
|
self.scheduler.save_and_add_job(task)
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self.logger.debug('[TaskManager] Exception occured when adding task. Error Message: {}'.format(str(e)))
|
self.logger.debug('[TaskManager] Exception occurred when adding task. Error Message: {}'.format(str(e)))
|
||||||
|
|
||||||
def addPolicy(self, policy):
|
def addPolicy(self, policy):
|
||||||
try:
|
try:
|
||||||
self.pluginManager.processPolicy(policy)
|
self.pluginManager.processPolicy(policy)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self.logger.error("[TaskManager] Exception occured when adding policy. Error Message: {}".format(str(e)))
|
self.logger.error("[TaskManager] Exception occurred when adding policy. Error Message: {}".format(str(e)))
|
||||||
pass
|
|
||||||
|
|
||||||
def saveTask(self, task):
|
def saveTask(self, task):
|
||||||
try:
|
try:
|
||||||
|
@ -45,9 +44,8 @@ class TaskManager(object):
|
||||||
plugin_id = self.db_service.update('plugin', plu_cols, plugin_args)
|
plugin_id = self.db_service.update('plugin', plu_cols, plugin_args)
|
||||||
values = [str(task.get_id()), str(task.get_create_date()), str(task.get_modify_date()), str(task.get_command_cls_id()), str(task.get_parameter_map()), str(task.get_deleted()), str(plugin_id),str(task.get_cron_str())]
|
values = [str(task.get_id()), str(task.get_create_date()), str(task.get_modify_date()), str(task.get_command_cls_id()), str(task.get_parameter_map()), str(task.get_deleted()), str(plugin_id),str(task.get_cron_str())]
|
||||||
self.db_service.update('task', task_cols, values, None)
|
self.db_service.update('task', task_cols, values, None)
|
||||||
# self.logger.debug('[TaskManager] Task has been saved to database (Task id:' + task.get_id() + ')')
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(str(e))
|
self.logger.error("[TaskManager] Exception occurred while saving task. Error Message: {}".format(str(e)))
|
||||||
|
|
||||||
def updateTask(self, task):
|
def updateTask(self, task):
|
||||||
# TODO not implemented yet
|
# TODO not implemented yet
|
||||||
|
|
Loading…
Reference in a new issue