Problems found with existing digests:
Package memconf distfile memconf-2.16/memconf.gz
b6f4b736cac388dddc5070670351cf7262aba048 [recorded]
95748686a5ad8144232f4d4abc9bf052721a196f [calculated]
Problems found locating distfiles:
Package dc-tools: missing distfile dc-tools/abs0-dc-burn-netbsd-1.5-0-gae55ec9
Package ipw-firmware: missing distfile ipw2100-fw-1.2.tgz
Package iwi-firmware: missing distfile ipw2200-fw-2.3.tgz
Package nvnet: missing distfile nvnet-netbsd-src-20050620.tgz
Package syslog-ng: missing distfile syslog-ng-3.7.2.tar.gz
Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden). All existing
SHA1 digests retained for now as an audit trail.
Release date: 2011-09-19 02:53 UTC
Release state: stable
Changelog:
- The 'firebug' handler is now usable with Chrome, as well. (Request 18617)
- The 'observer' code now longer generates deprecated return value reference notices. (Bug 18830)
Release date: 2011-05-26 05:28 UTC
Changelog:
- Improved the console handler's stream handling. (Bug 17874)
- Added a 'reopen' configuration parameter to the syslog handler.
(Request 18185)
- The backtrace depth is now configurable via setBacktraceDepth().
(Request 18423)
1.12.5 2010-12-23 05:38 UTC
Changelog:
- Corrected the "levels" unit test on 32-bit systems. (Bug 18099)
- Corrected quote handling in Firebug console output. (Bug 18141)
Changes are too huge to show here, please refer:
http://pear.php.net/package/Log/download/All.
And now, this pacakge supports PHP5 only.
1.12.0
This release drops PHP4 compatibility (enforced by the package dependencies).
There is unfortunately no way to support both PHP4 and PHP5 in the same code
base when running under E_ALL. Because it appears that the majority of Log
package users have moved to PHP5, the Log package now targets that audience.
Given the fact that the Log package is now largely in maintenance mode,
existing PHP4 users shouldn't feel adandoned. If necessary, important fixes,
etc. can be merged back into the 1.11.* release line, which will retain PHP4
compatibility.
all PEAR packages to php?-pear-* and all Apache packages to ap13-* or
ap2-* respectively. Add new variables to simplify the Makefile
handling. Add CONFLICTS on the old names. Reset revisions of bumped
packages. ap-php will now depend on the default Apache and PHP version.
All programs using it have an implicit option of the Apache version
as well.
OK from jlam@ and adrianp@.
* Added a new 'null' log handler.
* Added a flush() method to the public Log API.
* Added a new handler that logs using the Sqlite extension.
* The open(), close() and log() methods now consistently return success
or failure.
* If an object or array is passed as a log event, its human-readable
representation will be used.
* It's now possible to specify the default priority for events logged
using the log() method.
1.8.1:
* Fixed some bugs in the 'win' handler.
* Updated the Log_observer::factory() method for consistency
with Log::factory().
1.8.0:
* The Log package now includes a users guide, example scripts and unit tests.
* A number of small improvements have been made to the 'win' log handler
(based on suggestions from Paul Yanchenko).
* A new 'display' log handler has been added to the distribution. Contributed
by Paul Yanchenko, this handler simply prints the error message back
to the browser. It respects the 'error_prepend_string' and
'error_append_string' PHP INI values and is useful when using
PEAR::setErrorHandling()'s PEAR_ERROR_CALLBACK mechanism.
1.7.1:
* The mail handler now uses "\n" to terminate lines instead of "\r\n".
* The file handler's path creation routines now guard against potentially
infinite recursion.
* It is now possible to pass an object to the logging methods. If the object
offers a PEAR_Error-style getMessage() or PHP5 exception-style toString()
method, it will be used to extract the message text.
Documentation and the guide are installed in ${LOCALBASE}/share/doc/pear-Log.
The Log framework provides an abstracted logging system for PHP. It supports
logging to console, file, syslog, SQL, mail, and mcal targets. It also
provides a subject - observer mechanism.