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,8 @@ final class AmountExactly extends AbstractTrigger implements TriggerInterface
$compare = $this->triggerValue;
$result = bccomp($amount, $compare, 4);
if ($result === 0) {
// found something
Log::debug($amount . ' is exactly ' . $compare . '. Return true.');
return true;
}
// found nothing.
Log::debug($amount . ' is not exactly ' . $compare . '. Return false.');
return false;
}