Hello, I m using Zend_Log to create and Log messages. It works well for storing Log messages in to a stream (a new defined file name), well i want to store these messages in to Buffer array.
For this i visit : http://framework.zend.com/wiki/display/ZFPROP/Zend_Log+Rewrite#Zend_LogRewrite-1.Overview but fail to get their points.............
Thanks : Rob Knight
But i want some thing like;
If i write $logger->info('Informational message'); in any line of my .php file, the message which will show, must contain the Message Text along with Line Number.
Let suppose i write $logger->info('Name Already Exists'); at line number 116 of my test.php file. Then the result Log must be like : INFO: "Name Already Exists", Line: 116, File: test.php