start() public method

The start method is called against a LDAP operation prior to the operation being executed.
public start ( LogOperation $operation )
$operation LogOperation
 /**
  * Start a logging operation.
  *
  * @param LogOperation|null $log
  */
 protected function logStart(LogOperation $log = null)
 {
     if ($this->shouldLog($log)) {
         $this->logger->start($log->start());
     }
 }