diff options
Diffstat (limited to 'example/example.php')
-rwxr-xr-x | example/example.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/example/example.php b/example/example.php new file mode 100755 index 0000000..efbc317 --- /dev/null +++ b/example/example.php @@ -0,0 +1,15 @@ +<?php + +# Should log to the same directory as this file +require dirname(__FILE__) . '/../src/KLogger.php'; + +$log = KLogger::instance(dirname(__FILE__), KLogger::DEBUG); + +$log->logInfo('Info Test'); +$log->logNotice('Notice Test'); +$log->logWarn('Warn Test'); +$log->logError('Error Test'); +$log->logFatal('Fatal Test'); +$log->logAlert('Alert Test'); +$log->logCrit('Crit test'); +$log->logEmerg('Emerg Test'); |