mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Removed most logging.
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user