Skip to content

Commit

Permalink
changed top docblock
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Fenton committed Oct 12, 2010
1 parent e2c2e5b commit 7e28011
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/KLogger.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@

/**
* Finally, a light, permissions-checking logging class.
*
* Author : Kenny Katzgrau <katzgrau@gmail.com>
* Date : July 26, 2008
* Comments : Originally written for use with wpSearch
* Website : http://codefury.net
* Version : 1.0
*
*
* Usage:
* $log = new KLogger ( "log.txt" , KLogger::INFO );
* $log->_logInfo("Returned a million search results"); //Prints to the log file
* $log->_logFatal("Oh dear."); //Prints to the log file
* $log->_logDebug("x = 5"); //Prints nothing due to priority setting
* $log = new KLogger('/var/log/', KLogger::INFO );
* $log->logInfo("Returned a million search results"); //Prints to the log file
* $log->logFatal("Oh dear."); //Prints to the log file
* $log->logDebug("x = 5"); //Prints nothing due to current severity threshhold
*
* @author Kenny Katzgrau <katzgrau@gmail.com>
* @since July 26, 2008
* @link http://codefury.net
* @version 0.1
*/

/**
Expand Down

0 comments on commit 7e28011

Please sign in to comment.