Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 1.14.4

Request #2853 Request for Log::stringToPriority
Submitted: 2004-11-29 15:31 UTC
From: andrew dot libby at perfectorder dot com Assigned: jon
Status: Closed Package: Log
PHP Version: 5.0.1 OS: Any
Roadmaps: (Not assigned)    
Subscription  
Comments Add Comment Add patch


Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know! Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem : 38 + 20 = ?

 
 [2004-11-29 15:31 UTC] andrew dot libby at perfectorder dot com
Description: ------------ It's attractive to have a stringToPriority() method added to the PEAR Log class to compliment the priorityToString() method. An example method might look like: function stringToPriority($str) { $levels = array( 'emergencey' => PEAR_LOG_EMERG, 'alert' => PEAR_LOG_ALERT, 'critical' => PEAR_LOG_CRIT, 'error' => PEAR_LOG_ERR, 'warning' => PEAR_LOG_WARNING, 'notice' => PEAR_LOG_NOTICE, 'info' => PEAR_LOG_INFO, 'debug' => PEAR_LOG_DEBUG ); return $levels[$str]; } We're making pretty heavy use of this code, so if you're in need of maintenance help, I'm certianly willing to help with bugs and scuch as they come up.

Comments

 [2005-01-09 23:42 UTC] jon
This bug has been fixed in CVS. In case this was a documentation problem, the fix will show up at the end of next Sunday (CET) on pear.php.net. In case this was a pear.php.net website problem, the change will show up on the website in short time. Thank you for the report, and for helping us make PEAR better.