Updated Branches: refs/heads/master c32ddc130 -> f9522316c
Revert "Added getter for LoggerEvent::$locationInfo" This reverts commit c32ddc13001b45aa53b3c515feb46e6fe79766bb. Commited to wrong branch. Should have been develop. Signed-off-by: Ivan Habunek <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/logging-log4php/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4php/commit/f9522316 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4php/tree/f9522316 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4php/diff/f9522316 Branch: refs/heads/master Commit: f9522316c9bd3cb67d3f56bd3236922c03027e18 Parents: c32ddc1 Author: Ivan Habunek <[email protected]> Authored: Wed Mar 13 22:50:49 2013 +0100 Committer: Ivan Habunek <[email protected]> Committed: Wed Mar 13 22:50:49 2013 +0100 ---------------------------------------------------------------------- src/main/php/LoggerLoggingEvent.php | 16 ++++------------ 1 files changed, 4 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4php/blob/f9522316/src/main/php/LoggerLoggingEvent.php ---------------------------------------------------------------------- diff --git a/src/main/php/LoggerLoggingEvent.php b/src/main/php/LoggerLoggingEvent.php index c810220..29ba361 100644 --- a/src/main/php/LoggerLoggingEvent.php +++ b/src/main/php/LoggerLoggingEvent.php @@ -142,10 +142,10 @@ class LoggerLoggingEvent { * Returns the full qualified classname. * TODO: PHP does contain namespaces in 5.3. Those should be returned too, */ - public function getFullQualifiedClassname() { - return $this->fqcn; - } - + public function getFullQualifiedClassname() { + return $this->fqcn; + } + /** * Set the location information for this logging event. The collected * information is cached for future use. @@ -195,14 +195,6 @@ class LoggerLoggingEvent { } /** - * Sets the event's location info. Can be used to override the default info. - * @param LoggerLocationInfo $locationInfo - */ - public function setLocationInformation(LoggerLocationInfo $locationInfo) { - $this->locationInfo = $locationInfo; - } - - /** * Return the level of this event. Use this form instead of directly * accessing the {@link $level} field. * @return LoggerLevel
