diff options
author | Brian Fenton <bfenton@ku.edu> | 2010-10-12 18:40:06 -0500 |
---|---|---|
committer | Brian Fenton <bfenton@ku.edu> | 2010-10-12 18:40:06 -0500 |
commit | f294583a855611e1b228449eb392cf63eb28300c (patch) | |
tree | d2c01e690104ea69f3c366b4eb7d1dd65ce7213e | |
parent | 39a42a82bf471b92b210c6a14900e69212c1ff5e (diff) | |
download | KLogger-f294583a855611e1b228449eb392cf63eb28300c.zip KLogger-f294583a855611e1b228449eb392cf63eb28300c.tar.gz KLogger-f294583a855611e1b228449eb392cf63eb28300c.tar.bz2 |
Changed top docblock
-rwxr-xr-x | src/KLogger.php | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/src/KLogger.php b/src/KLogger.php index d759ef6..bbd0ece 100755 --- a/src/KLogger.php +++ b/src/KLogger.php @@ -3,17 +3,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
+ * Originally written for use with wpSearch
*
* 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
*/
/**
|