Skip to content

JaggedJax/CIO-Logging

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 

Repository files navigation

CIOLogger: A Simple Logging Class For PHP forked from KLogger

A project written by Kenny Katzgrau and originally hosted at CodeFury.net. This marks the development of a newer version of KLogger.

About

CIOLogger is an easy-to-use logging class for PHP. It supports standard log levels like debug, info, warn, error, and fatal. Additionally, it isn't naive about file permissions (which is expected). It was meant to be a class that you could quickly include into a project and have working right away.

The class was written in 2008, but I have since received a number of emails both saying 'thanks' and asking me to add features.

This github project will host the development of the new CIOLogger. The original version of KLogger is tagged as version 0.1, and is available for download here.

Basic Usage

$log = new CIOLogger('/var/log/'); # Specify the log directory
$log->logInfo('Returned a million search results'); //Prints to the log file
$log->logFatal('Oh dear.'); //Prints to the log file
$log->logInfo('Here is an object', $obj); //Prints to the log file with a dump of the object

Why use CIOLogger?

Why not? Just drop it in and go. If it saves you time and does what you need, go for it! Take a line from the book of our C-code fathers: "build upon the work of others".

Special Thanks

Special thanks to all contributors, which right now includes three people:

Tim Kinnane Brian Fenton Cameron Will

CIO Technologies Improvements

This fork of KLogger currently adds the following features if available and will gracefully degrade if not:

  • Forking (flock)
  • Locking (pcntl_fork)
  • ForkFail and LockFail messages
  • Log IDs (almost always guaranteed to be unique for each entry)
  • Log name and Log ID prefixes

License

The MIT License

Copyright (c) 2008-2010 Kenny Katzgrau [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A Simple Logging Class For PHP

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%