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

@@ -58,15 +58,9 @@ final class AmountLess extends AbstractTrigger implements TriggerInterface
$compare = $this->triggerValue;
$result = bccomp($amount, $compare, 4);
if ($result === -1) {
// found something
Log::debug($amount . ' is less than ' . $compare . '. Return true.');
return true;
}
// found nothing.
Log::debug($amount . ' is not less than ' . $compare . '. Return false.');
return false;
}