LdapTools\Log\LoggerChain::end PHP Method

end() public method

The end of a logging operation. Initiated on each logger in the chain.
public end ( LogOperation $operation )
$operation LogOperation
    public function end(LogOperation $operation)
    {
        foreach ($this->loggers as $logger) {
            $logger->end($operation);
        }
    }