protected function AcquiaLiftAPI::logger in Acquia Lift Connector 7
Same name and namespace in other branches
- 7.2 includes/AcquiaLiftAPI.inc \AcquiaLiftAPI::logger()
Returns the logger to use.
Return value
PersonalizeLoggerInterface
File
- includes/
acquia_lift.classes.inc, line 383 - Provides an agent type for Acquia Lift
Class
- AcquiaLiftAPI
- @file Provides an agent type for Acquia Lift
Code
protected function logger() {
if ($this->logger !== NULL) {
return $this->logger;
}
return new PersonalizeLogger();
}