zend-log icon indicating copy to clipboard operation
zend-log copied to clipboard

Log component from Zend Framework

Results 8 zend-log issues
Sort by recently updated
recently updated
newest added

Currently there is a problem with `print_r` in [`ExceptionHandler`](https://github.com/zendframework/zend-log/blob/master/src/Formatter/ExceptionHandler.php#L48) formatter, if argument is an object and not simple POCO / DTO but one that contains links to other objects and...

The component includes a number of factories: - Factories: - `Zend\Log\LoggerAbstractServiceFactory` - `Zend\Log\LoggerServiceFactory` - Plugin Managers: - FilterPluginManager - FormatterPluginManager - ProcessorPluginManager - WriterPluginManager Documentation should include how to setup...

help wanted
EasyFix
documentation

**A warning in advance: this can seriously crash your browser as it tries to write over 20.000 lines of code to the browser screen!** The notices the script produces: >...

Fatal error: Maximum function nesting level of '100' reached, aborting! in ../library/zendframework/zend-log/src/LoggerAbstractServiceFactory.php on line 85 Problem resolve when we put a "Config" on $services->has('config') line 91...

This issue has been moved from the `zendframework` repository as part of the bug migration program as outlined here - http://framework.zend.com/blog/2016-04-11-issue-closures.html --- Original Issue: https://api.github.com/repos/zendframework/zendframework/issues/7518 User: @ThaDafinser Created On: 2015-05-13T09:08:48Z...

The previously defined error and exception handlers (if any) will be lost: https://github.com/zendframework/zend-log/blob/master/src/Logger.php#L562 https://github.com/zendframework/zend-log/blob/master/src/Logger.php#L611 ``` php error_reporting(E_ALL); set_error_handler(function () { // We will never get here :-( echo 'Previous error...

Just like other components, this one too is not designed to work with database schemas. It allows only to pass table name as string. I suggest changing prepareInsert() method and...

enhancement

Thanks for this standard logger library, currently using this logger to log events in wordpress and its working fine, though I'm majorly using just the "Stream" writer, I think there...