jon Thu Nov 28 12:00:09 2002 EDT
Modified files:
/pear/Log/Log file.php
Log:
Use the PEAR_LOG_* constant instead of the LOG_* constant.
Index: pear/Log/Log/file.php
diff -u pear/Log/Log/file.php:1.12 pear/Log/Log/file.php:1.13
--- pear/Log/Log/file.php:1.12 Sun Oct 13 23:27:50 2002
+++ pear/Log/Log/file.php Thu Nov 28 12:00:08 2002
@@ -33,7 +33,7 @@
// | Jon Parise <jon@xxxxxxx> |
// +-----------------------------------------------------------------------+
//
-// $Id: file.php,v 1.12 2002/10/14 03:27:50 jon Exp $
+// $Id: file.php,v 1.13 2002/11/28 17:00:08 jon Exp $
/**
* The Log_file class is a concrete implementation of the Log::
@@ -41,7 +41,7 @@
* on the previous Log_file class by Jon Parise.
*
* @author Richard Heyes <richard@xxxxxxx>
-* @version $Revision: 1.12 $
+* @version $Revision: 1.13 $
* @package Log
*/
class Log_file extends Log
@@ -97,7 +97,7 @@
* @param int $maxLevel Maximum level at which to log.
* @access public
*/
- function Log_File($name, $ident = '', $conf = array(), $maxLevel =
LOG_DEBUG)
+ function Log_File($name, $ident = '', $conf = array(), $maxLevel =
PEAR_LOG_DEBUG)
{
/* If a file mode has been provided, use it. */
if (!empty($conf['mode'])) {
--
PEAR CVS Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|