I felt into a log recursion problem and I would like to disable logs only for a single operation. Is there any kind of runtime switch for Laravel logs? Like:
<?php
Log::stop();
// bypass log here
Log::resume();
Unfortunately, there is no way to do that through the facade like on example above. What's the best way to turn Laravel log off temporarily?