Removed most logging.

This commit is contained in:
James Cole
2016-03-19 11:25:11 +01:00
parent 7aa2565e89
commit 322fef2db1
17 changed files with 0 additions and 95 deletions

View File

@@ -57,12 +57,8 @@ final class ToAccountIs extends AbstractTrigger implements TriggerInterface
$search = strtolower($this->triggerValue);
if ($toAccountName == $search) {
Log::debug('"' . $toAccountName . '" equals "' . $search . '" exactly. Return true.');
return true;
}
Log::debug('"' . $toAccountName . '" does not equal "' . $search . '". Return false.');
return false;
}