Removed debugging

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2024-07-18 04:43:30 +01:00
parent fa5b59cf21
commit 9858cc5baf

View file

@ -356,13 +356,8 @@ class Accessory extends SnipeModel
public function numRemaining()
{
$checkedout = $this->numCheckedOut();
\Log::debug('checked out: '.$checkedout);
$total = $this->qty;
\Log::debug('total: '.$total);
$remaining = $total - $checkedout;
\Log::debug('remaining: '.$remaining);
return $remaining;
}