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 gr...@apache.org on 2009/05/20 06:56:15 UTC

svn commit: r776548 - /incubator/log4php/trunk/src/test/php/layouts/LoggerLayoutSimpleTest.php

Author: grobmeier
Date: Wed May 20 04:56:14 2009
New Revision: 776548

URL: http://svn.apache.org/viewvc?rev=776548&view=rev
Log:
corrected name in logging event

Modified:
    incubator/log4php/trunk/src/test/php/layouts/LoggerLayoutSimpleTest.php

Modified: incubator/log4php/trunk/src/test/php/layouts/LoggerLayoutSimpleTest.php
URL: http://svn.apache.org/viewvc/incubator/log4php/trunk/src/test/php/layouts/LoggerLayoutSimpleTest.php?rev=776548&r1=776547&r2=776548&view=diff
==============================================================================
--- incubator/log4php/trunk/src/test/php/layouts/LoggerLayoutSimpleTest.php (original)
+++ incubator/log4php/trunk/src/test/php/layouts/LoggerLayoutSimpleTest.php Wed May 20 04:56:14 2009
@@ -26,7 +26,7 @@
 class LoggerLayoutSimpleTest extends PHPUnit_Framework_TestCase {
         
 	public function testSimpleLayout() {
-		$event = new LoggerLoggingEvent("LoggerAppenderPDOTest", new Logger("TEST"), LoggerLevel::getLevelError(), "testmessage");
+		$event = new LoggerLoggingEvent("LoggerLayoutSimpleTest", new Logger("TEST"), LoggerLevel::getLevelError(), "testmessage");
 
 		$layout = new LoggerLayoutSimple();
 		$v = $layout->format($event);