diff --git a/library/log4php/layouts/LoggerLayoutSerialized.php b/library/log4php/layouts/LoggerLayoutSerialized.php deleted file mode 100644 --- a/library/log4php/layouts/LoggerLayoutSerialized.php +++ /dev/null @@ -1,55 +0,0 @@ -setBoolean('locationInfo', $value); - } - - /** Returns the location information flag. */ - public function getLocationInfo() { - return $this->locationInfo; - } - - public function format(LoggerLoggingEvent $event) { - // If required, initialize the location data - if ($this->locationInfo) { - $event->getLocationInformation(); - } - return serialize($event) . PHP_EOL; - } -}