diff options
author | Brian Fenton <bfenton@ku.edu> | 2010-10-11 22:07:03 -0500 |
---|---|---|
committer | Brian Fenton <bfenton@ku.edu> | 2010-10-11 22:07:03 -0500 |
commit | 7e280114599a99f8545f8ccc8dbace1d1d65df2b (patch) | |
tree | e0c1b76a8ea4f89b261b37eb2c03c909a1fb4959 | |
parent | e2c2e5b42aa7b84295511fc378d3a1e3aaf0ab43 (diff) | |
download | KLogger-7e280114599a99f8545f8ccc8dbace1d1d65df2b.zip KLogger-7e280114599a99f8545f8ccc8dbace1d1d65df2b.tar.gz KLogger-7e280114599a99f8545f8ccc8dbace1d1d65df2b.tar.bz2 |
changed top docblock
-rwxr-xr-x | src/KLogger.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/KLogger.php b/src/KLogger.php index 8ac1da6..d84686c 100755 --- a/src/KLogger.php +++ b/src/KLogger.php @@ -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
*/
/**
|