Skip to content

Commit

Permalink
Better error log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
aljawaid committed Jan 14, 2023
1 parent 009d1ff commit ae26d3d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Action/EmailTaskHistory.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public function doAction(array $data)
$historySent = TRUE;

// An easy way to test code is to use error_log
error_log("KanboardEmailHistory > Email Sent",0);
error_log("KanboardEmailHistory > Email Sent to Task Assignee",0);
}
}

Expand Down Expand Up @@ -176,7 +176,7 @@ public function doAction(array $data)
$historySent = TRUE;

// An easy way to test code is to use error_log
error_log("KanboardEmailHistory > Email Sent",0);
error_log("KanboardEmailHistory > Email Sent to Task Creator",0);
}
}

Expand Down Expand Up @@ -213,7 +213,7 @@ public function doAction(array $data)
$historySent = TRUE;

// An easy way to test code is to use error_log
error_log("KanboardEmailHistory > Email Sent",0);
error_log("KanboardEmailHistory > Email Sent to Project Email Address",0);
}
}

Expand Down

0 comments on commit ae26d3d

Please sign in to comment.