You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4php-dev@logging.apache.org by ma...@apache.org on 2004/06/06 14:22:41 UTC

cvs commit: logging-log4php/src/log4php/appenders LoggerAppenderSocket.php

marco       2004/06/06 05:22:41

  Modified:    src/log4php/appenders LoggerAppenderSocket.php
  Log:
  Fixed a call to the undefined function getlocationinfo() (thanks to Rene').
  
  Revision  Changes    Path
  1.2       +2 -2      logging-log4php/src/log4php/appenders/LoggerAppenderSocket.php
  
  Index: LoggerAppenderSocket.php
  ===================================================================
  RCS file: /home/cvs/logging-log4php/src/log4php/appenders/LoggerAppenderSocket.php,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- LoggerAppenderSocket.php	8 Mar 2004 21:13:05 -0000	1.1
  +++ LoggerAppenderSocket.php	6 Jun 2004 12:22:41 -0000	1.2
  @@ -260,7 +260,7 @@
               LoggerLog::debug("LoggerAppenderSocket::append()");
               
               if ($this->getLocationInfo())
  -                $event->getLocationInfo();
  +                $event->getLocationInformation();
           
               if (!$this->getUseXml()) {
                   $sEvent = serialize($event);