summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #88 from jvalleroy/phpunit-v6HEADorigin/masterorigin/HEADmasterKenny Katzgrau2017-12-012-2/+2
|\ | | | | Support phpunit v6
| * Update composer.json for phpunit v6James Valleroy2017-12-011-1/+1
| |
| * Support phpunit v6James Valleroy2017-11-301-1/+1
|/ | | | Closes #87
* Merge pull request #83 from jvalleroy/fix-test-loopKenny Katzgrau2017-06-211-0/+5
|\ | | | | Fix endless loop in test
| * Fix one more issue in testJames Valleroy2017-06-141-1/+2
| | | | | | | | | | | | When reading the last line of the test log, if we move beyond the beginning of the file, that means the file contains only one line. Rewind the file to ensure the full contents are returned.
| * Fix endless loop in testJames Valleroy2017-06-141-0/+4
|/
* Update version1.2.1Kenny Katzgrau2016-11-071-1/+1
|
* Allow newer versions of psr/logRob Bayliss2016-11-061-1/+1
|
* Update version1.2.0Kenny Katzgrau2015-11-041-1/+1
|
* Merge pull request #69 from TeslaDethray/relax_visibility1.1.0Kenny Katzgrau2015-10-061-6/+6
|\ | | | | Relaxed visibility of some elements to protected
| * Relaxed visibility of some elements to protectedtesladethray2015-10-011-6/+6
|/
* Update copyrightKenny Katzgrau2015-09-211-1/+1
|
* Merge pull request #66 from TeslaDethray/let_use_stderrKenny Katzgrau2015-09-151-1/+1
|\ | | | | Enabled all php://xxxxxx targets
| * Enabled all php://xxxxxx targetsSara McCutcheon2015-09-141-1/+1
|/
* Add option for visual alignment of log levels with level-padding format optionorigin/paddingKenny Katzgrau2015-09-013-5/+18
|
* Merge pull request #54 from richjenks/developKenny Katzgrau2015-04-272-14/+78
|\ | | | | Added support for custom log line format and JSON output
| * Documented priority param for logFormatRich Jenks2015-04-181-0/+1
| |
| * Added priority (int value of level) to format paramsRich Jenks2015-04-181-4/+5
| |
| * Changed array syntax to support PHP 5.3.xRich Jenks2015-04-171-2/+2
| |
| * Added support for custom log line format and JSON outputRich Jenks2015-04-162-14/+76
|/ | | | | | | | | | | | https://github.com/katzgrau/KLogger/issues/39 1. Custom Formatting Accomplished with the `logFormat` option which accepts a parametized string (see readme). 2. JSON output The option `appendContext` was added which, when set to false, allows pure JSON output via the `logFormat` option (again, see readme).
* Onno gets into the hall of fameKenny Katzgrau2015-04-141-1/+2
|
* Merge pull request #51 from onno-vos-dev/FixReadMeAndComposerInstructionsKenny Katzgrau2015-04-132-3/+3
|\ | | | | Fix read me and composer instructions
| * Change composer installation to dev-masteronno-vos-dev2015-04-111-2/+2
| |
| * Change composer version to dev-masteronno-vos-dev2015-04-111-1/+1
| |
* | Merge pull request #52 from onno-vos-dev/CleanConstructorKenny Katzgrau2015-04-131-14/+39
|\ \ | | | | | | Clean constructor
| * | rtrim DIRECTORY_SEPARATOR instead of '\/'onno-vos-dev2015-04-111-1/+1
| | |
| * | remove duplicate code for checking if fileHandle was openedonno-vos-dev2015-04-111-3/+0
| | |
| * | Move setting of filePath to its own setter. Include a check to see if ↵onno-vos-dev2015-04-111-6/+17
| | | | | | | | | | | | extension is provided in filename, otherwise add it
| * | Move logging to StdOut to separate setteronno-vos-dev2015-04-111-1/+8
| | |
| * | Move setting FileHandle to it's own setteronno-vos-dev2015-04-111-2/+12
| | |
| * | Add additional space on line 116 to have consistent formatting with the ↵onno-vos-dev2015-04-111-1/+1
| |/ | | | | | | remaining code
* | Merge pull request #45 from drasive/patch-1Kenny Katzgrau2015-03-191-1/+1
|\ \ | | | | | | Updated the version to 1.0.0 in the class doc
| * | Updated the version to 1.0.0 in the class docDimitri Vranken2015-03-191-1/+1
| |/
* | Merge pull request #44 from chrisbjr/chrisbjr-patch-1Kenny Katzgrau2015-03-191-1/+1
|\ \ | |/ |/| Corrected PHPDoc variable description
| * Corrected PHPDoc variable descriptionChris Bautista2015-03-191-1/+1
|/
* Merge pull request #42 from onno-vos-dev/masterKenny Katzgrau2015-03-101-9/+15
|\ | | | | Add support for writing log entries to php://stdout instead of a file
| * Also allow php://output instead of a file for outputting directly to consoleonno-vos-dev2015-03-101-1/+1
| |
| * Add support for writing log entries to php://stdout instead of a fileonno-vos-dev2015-03-101-9/+15
|/
* Merge pull request #41 from onno-vos-dev/masterKenny Katzgrau2015-03-091-13/+14
|\ | | | | A bit of cleaning
| * Remove obsolete comma from arrays in contextToString()Onno Vos2015-03-091-2/+2
| |
| * Type hardened flushFrequence check in write()Onno Vos2015-03-091-1/+1
| |
| * Use null !== instead of is_nullOnno Vos2015-03-091-1/+1
| |
| * Add array as type to in constructorOnno Vos2015-03-091-1/+1
| |
| * Remove obsolete comma from arrayOnno Vos2015-03-091-1/+1
| |
| * Remove null from private as it's set to null per defaultOnno Vos2015-03-091-1/+1
| |
| * Add array to PHPDoc of constructorOnno Vos2015-03-091-5/+6
| |
| * Remove null from private as it's set to null per defaultOnno Vos2015-03-091-1/+1
|/
* Add filename optionKenny Katzgrau2015-03-052-5/+14
|
* Update docs, closes #38Kenny Katzgrau2015-03-051-0/+22
|
* Add third options param in constructor, add support for prefixes and extensions.Kenny Katzgrau2015-03-053-10/+134
|
* Fix link, close #20Kenny Katzgrau2015-02-261-2/+2
|
* Update docs, closes #36Kenny Katzgrau2015-02-261-4/+3
|
* Elaborate on old versionsKenny Katzgrau2015-02-261-1/+1
|
* Update readme to point to old versions of KLoggerKenny Katzgrau2015-02-261-0/+2
|
* Fixing a formatting bug, and the README1.0.0Dan Horrigan2014-03-192-13/+11
|
* Better var_export formatting.Dan Horrigan2014-03-181-12/+15
|
* Adding setLogLevelThreshold method.Dan Horrigan2014-03-181-0/+10
|
* Better composer.json info.Dan Horrigan2014-03-181-0/+3
|
* Better example.Dan Horrigan2014-03-181-1/+33
|
* Fixed Extra line break when contact given.Dan Horrigan2014-03-181-1/+1
|
* Bug in README example.Dan Horrigan2014-03-181-1/+1
|
* A few more README tweaks.Dan Horrigan2014-03-181-6/+6
|
* Updating README.Dan Horrigan2014-03-181-19/+72
|
* Preparing for Unit Tests.Dan Horrigan2014-03-186-26/+42
|
* Move the timestamp generation out of the formatMessage into its own method.Dan Horrigan2014-03-171-5/+18
|
* Major overhaul. It is not PSR-3 compatible and the output is prettier.Dan Horrigan2014-03-172-322/+117
|
* Adding the Katzgrau\KLogger namespace and renaming KLogger to Logger.Dan Horrigan2014-03-174-6/+13
|
* Initial composer initialization.Dan Horrigan2014-03-172-0/+21
|
* Added the ability to pass objects as a second log argument. Special thanks ↵0.2.0Kenny Katzgrau2012-07-013-24/+46
| | | | to Cameron Will for the initial pull request
* Merge branch 'master' of github.com:katzgrau/KLoggerKenny Katzgrau2010-12-113-5/+21
|\
| * Fixed small array index errorv0.2Kenneth Katzgrau2010-12-071-1/+1
| |
| * Fixed a major issue with the checking of the severity level. Special thanks ↵Kenneth Katzgrau2010-12-073-5/+21
| | | | | | | | to Tim Kinnane for pointing it out
* | Fixed a minor undef-array-index bug, updated readmeKenny Katzgrau2010-12-112-17/+9
|/
* Fixed readme formatting, and Brian's nameKenneth Katzgrau2010-10-141-1/+1
|
* Merge branch 'master' of http://github.com/fentie/KLogger into fentie-masterKenneth Katzgrau2010-10-141-59/+169
|\
| * fixed spacing (Zend)Brian Fenton2010-10-121-4/+4
| |
| * added setter for dateFormatBrian Fenton2010-10-121-0/+10
| |
| * converted to using new severities as per RFC, updated shortcut methods ↵Brian Fenton2010-10-121-20/+92
| | | | | | | | accordingly
| * mergeBrian Fenton2010-10-121-42/+70
| |\
| | * replacing double quotes with single quotes (Zend)Brian Fenton2010-10-121-5/+5
| | |
| | * strip off both possible directory separators with rtrimBrian Fenton2010-10-121-1/+1
| | |
| | * Changed top docblockBrian Fenton2010-10-121-9/+10
| | |
| | * changed severity to severityThresholdBrian Fenton2010-10-121-4/+4
| | |
| | * changed logFile to logFilePathBrian Fenton2010-10-121-4/+4
| | |
| | * changed priority to severityBrian Fenton2010-10-121-23/+23
| | |
| | * added methods to deal with messageQueueBrian Fenton2010-10-111-0/+27
| | |
| | * Changed status code namesBrian Fenton2010-10-111-8/+8
| | |
| * | changed top docblockBrian Fenton2010-10-111-10/+10
| |/
* | Added special thnks section to readmeKenny2010-10-091-1/+7
|/
* combined conditional checksBrian Fenton2010-10-071-6/+4
|
* standardized & centralized message stringsBrian Fenton2010-10-071-4/+15
|
* added property documentationBrian Fenton2010-10-071-0/+42
|
* added method documentationBrian Fenton2010-10-071-1/+61
|
* removed incorrect commentBrian Fenton2010-10-071-2/+1
|
* Zend coding standardsBrian Fenton2010-10-071-151/+141
|
* StartBrian Fenton2010-10-071-44/+44
|
* * Normalized casing of members and methodsKenny2010-06-243-158/+201
| | | | | | * Added 'rolling' log files (just logs to a date-stamped file) * Added getInstance() with singleton-like behavior * Removed references to the class name in favor of self
* Updated README to include project background and goalsKenny2010-06-231-3/+73
|
* Checking in the original version of KLogger, found at: ↵v0.1Kenny2010-06-222-0/+155
http://codefury.net/projects/klogger/