Skip to content
This repository has been archived by the owner on May 27, 2019. It is now read-only.

Commit

Permalink
Removing date prefix - user can add this if they want
Browse files Browse the repository at this point in the history
  • Loading branch information
Neil Crookes committed Apr 15, 2010
1 parent 934b007 commit 175133c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/queued_task.php
Expand Up @@ -162,7 +162,7 @@ public function markJobFailed($id, $failureMessage = null) {
$data = $this->find('first', $findConf);
if (is_array($data)) {
$data[$this->name]['failed']++;
$data[$this->name]['failure_message'] .= date('r') . "\n" . $failureMessage . "\n";
$data[$this->name]['failure_message'] .= $failureMessage . "\n";
return (is_array($this->save($data)));
}
return false;
Expand Down

0 comments on commit 175133c

Please sign in to comment.