summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch '1.x'HEADorigin/masterorigin/HEADmasterJordi Boggiano2017-06-191-0/+9
|\
| * Update changelog1.23.0origin/1.xJordi Boggiano2017-06-191-0/+9
| |
* | Merge branch '1.x'Jordi Boggiano2017-06-191-3/+3
|\ \ | |/
| * Fix 5.3 supportJordi Boggiano2017-06-191-3/+3
| |
* | Fix level map override when using setExceptionHandler, fixes #1005Jordi Boggiano2017-06-192-20/+11
| |
* | Minor code cleanup on Handler/ErrorLogHandler.php (#995)Westin Shafer2017-06-191-6/+7
| | | | | | Just some cleanup for readability.
* | Merge branch '1.x'Jordi Boggiano2017-06-1911-27/+66
|\ \ | |/
| * SlackWebhookHandler: refactor curl_setopt to curl_setopt_arrayHarm Bandstra2017-06-191-6/+10
| |
| * Explicitly set content-type header, and post JSON as bodyHarm Bandstra2017-06-191-1/+2
| |
| * Fix DyanmoDbHandler test suiteJordi Boggiano2017-06-191-2/+9
| |
| * Make sure this works on any hostnameJordi Boggiano2017-06-191-1/+1
| |
| * Fix SwiftMailerHandler support for Swiftmailer 6.0+Alex Rock Ancelet2017-06-193-3/+8
| |
| * Use Aws\Sdk instead of Aws\Common\Aws, fixes #969, fixes #977Jordi Boggiano2017-06-191-2/+2
| |
| * Tweak HandlerWrapper example in docblock, fixes #991Jordi Boggiano2017-06-191-8/+10
| |
| * Support HeadlessChrome (#966)Douglas Reith2017-06-192-2/+17
| | | | | | * Support HeadlessChrome
| * Use first day/first month for date calculations in RotatingFileHandlerTest ↵Remon van de Kamp2017-06-191-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (#963) When making the calculations for the filename of the current month using date('d') does not work because you may run into the situation where you run the tests on a day in a month that does not exist in the previous month, for example March 30th. As there is no February 30th, PHP will skip ahead to March, and the filename for the "previous" month will incorrectly be "2017-03" instead of the expected "2017-02". Using the first day of the month instead of the current day of the month solves this problem. For consistency we now also use the first month of each year for calculations regarding years even if this is not necessary, it would break symmetry if we don't, plus it makes it clear that the value is not relevant in the calculation.
| * PHP Versions less than 5.3.6 throws undefined constant DEBUG_BACKTRAC… (#986)Brant Messenger2017-06-191-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | * PHP Versions less than 5.3.6 throws undefined constant DEBUG_BACKTRACE_IGNORE_ARGS Notice: Use of undefined constant DEBUG_BACKTRACE_IGNORE_ARGS - assumed 'DEBUG_BACKTRACE_IGNORE_ARGS' in /vendor/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php on line 58 * Define DEBUG_BACKTRACE_IGNORE_ARGS if not defined. * Solution using PHP_VERSION_ID and not defining... ...DEBUG_BACKTRACE_IGNORE_ARGS
* | Use callable typehint where possible + Removed dead code (#996)Grégoire Pineau2017-06-193-19/+4
| | | | | | | | | | | | | | | | * Removed dead code * Use callable typehint where possible * Removed PHP5.3 workaround
* | LogstashFormatter: format context and extra fields as JSON objects (#976)Elnur Abdurrakhimov2017-06-192-17/+17
| | | | | | | | | | BC Break * For Logstash, format context as object instead of individual fields * For Logstash, format extra as object instead of individual fields
* | Update README.md (#984)Marco Bunge2017-06-191-0/+1
| |
* | Avoid assertion-free testJordi Boggiano2017-06-191-0/+1
| |
* | Fix some docblocks, closes #970Jordi Boggiano2017-06-192-6/+6
| |
* | Remove old BCJordi Boggiano2017-06-192-48/+0
| |
* | Use namespaced phpunit classes, fixes #983Jordi Boggiano2017-06-1916-16/+16
| |
* | Avoid hiding nightly failuresJordi Boggiano2017-06-191-2/+0
| |
* | Make sure this works on any hostnameJordi Boggiano2017-06-191-1/+1
| |
* | Merge remote-tracking branch 'chrisforrence/tests-replace-deprecated-methods'Jordi Boggiano2017-06-194-6/+9
|\ \
| * | Split expectException calls with two parameters into the proper two callsChris Forrence2017-03-212-3/+6
| | |
| * | Replace deprecated setExpectedException methods with expectExceptionChris Forrence2017-03-214-6/+6
| | |
* | | Remove typehints on normalizer formatter to avoid invalid function signaturesJordi Boggiano2017-06-191-2/+2
| | |
* | | Remove hhvm buildJordi Boggiano2017-06-191-4/+3
| | |
* | | Avoid exts on hhvmJordi Boggiano2017-06-191-3/+3
| | |
* | | Merge branch '1.x'Jordi Boggiano2017-06-190-0/+0
|\ \ \ | | |/ | |/|
| * | Remove amqp extJordi Boggiano2017-06-191-1/+0
| | |
| * | Revert "Tweak extension loading"Jordi Boggiano2017-06-191-2/+1
| | | | | | | | | | | | This reverts commit 9cf8fb3810c3d0c0c9a3de1e3adb60198ac02f61.
| * | Tweak extension loadingJordi Boggiano2017-06-191-1/+2
| | |
* | | Fix mongodb testsJordi Boggiano2017-06-181-1/+1
| | |
* | | Rename level_num to monolog_level, refs #960Jordi Boggiano2017-06-182-2/+2
| | |
* | | Merge remote-tracking branch 'pupsschluepfer/master'Jordi Boggiano2017-06-182-0/+4
|\ \ \
| * \ \ Merge remote-tracking branch 'upstream/master'Benjamin Pentzold2017-05-226-7/+13
| |\ \ \
| * | | | map loglevel (int-value) to log-message, as wellBenjamin Pentzold2017-03-282-0/+4
| | |_|/ | |/| |
* | | | Merge branch '1.x'Jordi Boggiano2017-06-184-26/+53
|\ \ \ \ | |_|/ / |/| | / | | |/ | |/|
| * | Update to trusty buildsJordi Boggiano2017-06-181-11/+17
| | |
| * | Merge pull request #979 from Aliance/patch-1Jordi Boggiano2017-05-031-0/+2
| |\ \ | | | | | | | | Update JsonFormatter PHPDoc.
| | * | Update JsonFormatter.phpLesnykh Ilia2017-05-031-0/+2
| |/ /
| * | Merge pull request #967 from enleur/gelf-max-lengthJordi Boggiano2017-04-102-20/+45
| |\ \ | | | | | | | | Gelf max length
| | * | Remove constant from constructorJordi Boggiano2017-04-101-2/+2
| | | |
| | * | Use GELF max length per field and make max length configurable in constructorEnleur2017-04-072-20/+45
| |/ /
* | | Use coalesce operator (#982)Lesnykh Ilia2017-05-084-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Use coalesce operator * Use coalesce operator * Use coalesce operator * Use coalesce operator
* | | Merge pull request #965 from Sam-Burns/fix-buildJordi Boggiano2017-04-042-0/+6
|\ \ \ | |_|/ |/| | Fix build
| * | Allowing PHP 'nightly' build to fail, because it is seg faulting while ↵Sam-Burns2017-04-011-0/+2
| | | | | | | | | | | | running Composer
| * | Skipping DateTime microsecond test in PHP 7.1.3, because of ↵Sam-Burns2017-04-011-0/+4
|/ / | | | | | | https://bugs.php.net/bug.php?id=74258
* | Merge branch '1.x'Jordi Boggiano2017-03-200-0/+0
|\ \ | |/
| * Fix test moarJordi Boggiano2017-03-201-3/+5
| |
* | Fix testsJordi Boggiano2017-03-202-3/+3
| |
* | Merge branch '1.x'Jordi Boggiano2017-03-200-0/+0
|\ \ | |/
| * Fix test classJordi Boggiano2017-03-201-1/+1
| |
* | CS fixesJordi Boggiano2017-03-2020-84/+85
| |
* | Merge branch '1.x'Jordi Boggiano2017-03-200-0/+0
|\ \ | |/
| * Remove return annotationsJordi Boggiano2017-03-201-2/+2
| |
| * Remove strict types from test suiteJordi Boggiano2017-03-201-1/+1
| |
* | Make sure we use \Throwable and not just \ExceptionJordi Boggiano2017-03-203-8/+7
| |
* | Merge branch '1.x'Jordi Boggiano2017-03-201-1/+1
|\ \ | |/
| * Fix 5.3 supportJordi Boggiano2017-03-201-3/+3
| |
| * Add level parameter to payload when reporting Rollbar exceptions (#852)Erik Johansson2017-03-202-0/+83
| |
* | Merge pull request #948 from knugen/masterJordi Boggiano2017-03-202-0/+83
|\ \ | | | | | | Add level parameter to payload when reporting Rollbar exceptions (#852)
| * | Add level parameter to payload when reporting Rollbar exceptions (#852)Erik Johansson2017-03-192-0/+83
|/ /
* | Merge pull request #936 from zerkms/MICRO_OPT_FOREACH_INSTEAD_OF_CURRENT/NEXTJordi Boggiano2017-03-171-5/+8
|\ \ | | | | | | Replaced current/next-style loop with foreach
| * | Add comment note for clarityJordi Boggiano2017-03-171-0/+1
| | |
| * | Changed the "rewind loop condition" operandIvan Kurnosov2017-03-131-1/+1
| | | | | | | | | The `$handlerKey` might be a slightly more readable choice here
| * | Minor code readability improvementIvan Kurnosov2017-02-271-9/+4
| | |
| * | Replaced current/next-style loop with foreachIvan Kurnosov2017-02-271-5/+12
| | |
* | | Merge branch '1.x'Jordi Boggiano2017-03-173-5/+48
|\ \ \ | | |/ | |/|
| * | Split off work into a new method to facilitate extension, fixes #945Jordi Boggiano2017-03-171-0/+11
| | |
| * | Merge pull request #943 from ont/1.xJordi Boggiano2017-03-172-5/+37
| |\ \ | | | | | | | | Complete rfc5424 header for SyslogUdpHandler
| | * | Fix testsJordi Boggiano2017-03-171-2/+2
| | | |
| | * | Fix BC break and formattingJordi Boggiano2017-03-171-9/+11
| | | |
| | * | Fix array syntax for Travis CIont2017-03-151-2/+2
| | | |
| | * | Complete rfc5424 header for SyslogUdpHandleront2017-03-152-6/+36
| |/ / | | | | | | | | | | | | WARN: this commit adds backward incompatibility for the SyslogUdpHandler constructor.
* | | Handle DateTime objects in formatted messages (#940)Piers Warmers2017-03-142-0/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Handle DateTime objects in formatted meessages * Use interface to catch both DateTime and DateTimeImmutable * Maintain formatting standards. * Visibility to private.
* | | Merge branch '1.x'Jordi Boggiano2017-03-132-1/+6
|\ \ \ | |/ /
| * | Update changelog for 1.22.1, fixes #9181.22.1Jordi Boggiano2017-03-131-0/+5
| | |
| * | Fix 5.3 supportJordi Boggiano2017-03-131-1/+1
| | |
* | | Merge branch '1.x'Jordi Boggiano2017-03-123-2/+8
|\ \ \ | |/ /
| * | Backport fix for #752, fixes #925Jordi Boggiano2017-03-121-1/+5
| | |
| * | Allow to set custom event_id [LEGACY] (#930)Tim Strijdhorst2017-03-122-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * +allow to set a custom event_id as an extra parameter instead of letting Raven generate a UUIDv4 * +CS * +CS * +verbose array syntax because of PHP 5.3 support
| * | Php5.3 autoload errors (#929)fabriceparallel2017-03-121-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * make ErrorHandler extends LogLevel to avoid autoloading issue when error is triggered on compile * Revert "make ErrorHandler extends LogLevel to avoid autoloading issue when error is triggered on compile" This reverts commit 8140f6026f59a2be9f80e562cf6ad6d441241593. * call class_exists with force autoload set to true, to force the autoload of LogLevel on registration of the handlers
| * | Add missed return phpdoc tag. (#908)Lesnykh Ilia2017-01-111-0/+1
| | | | | | | | | | | | | | | | | | * Add missed return phpdoc tag. * Change $this to self.
* | | Correcting a small spelling mistake in README.md (#938)William Skates2017-03-121-1/+1
| | |
* | | Move human readable level name resolution in `Logger::addRecord()` to as ↵Ivan Kurnosov2017-03-121-2/+2
| | | | | | | | | | | | late as possible (#934)
* | | Improves code coverage (#926)Níckolas Daniel da Silva2017-03-121-2/+81
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 100% coverage on ErrorHandler::codeToString * 100% coverage on ErrorHandler::registerFatalHandler * fix typo * covers ErrorHandler::register() and left conditions on purpose * 100% coverage on ErrorHandler::registerErrorHandler() * 100% coverage on ErrorHandler::registerExceptionHandler() * Checks for possible interface breaking changes * 100% coverage on ErrorHandler::codeToString 100% coverage on ErrorHandler::registerFatalHandler covers ErrorHandler::register() and left conditions on purpose 100% coverage on ErrorHandler::registerErrorHandler() 100% coverage on ErrorHandler::registerExceptionHandler()
* | | Logmatic fix (#914)Guillaume Polaert2017-03-123-7/+12
| | | | | | | | | | | | * Adding the marker field to improve the Logmatic.io compatibilty
* | | Merge pull request #937 from ka7/feature/spellingJordi Boggiano2017-03-023-5/+5
|\ \ \ | |_|/ |/| | spelling fixes (comments, text)
| * | spelling fixes (comments, text)klemens2017-02-273-5/+5
|/ /
* | Merge pull request #917 from jstolp/masterJordi Boggiano2017-01-201-1/+1
|\ \ | | | | | | Happy 2017 Jordi / Seldaek / Monolog
| * | Happy 2017 JordiJeroen Stolp2017-01-201-1/+1
|/ /
* | Merge pull request #911 from StevenWInfo/docUpdatesJordi Boggiano2017-01-205-7/+7
|\ \ | | | | | | Replacing the add* methods in the docs and comments with the PSR-3 compliant methods
| * | Replacing the outdated add* methods in the docs with the PSR-3 compliant ↵StevenW2017-01-075-7/+7
| | | | | | | | | | | | methods.
* | | Update 04-extending.mdJordi Boggiano2017-01-201-0/+7
| | |
* | | Update 01-usage.mdJordi Boggiano2017-01-201-1/+1
| | |