1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-02-24 15:02:28 +01:00

470 Commits

Author SHA1 Message Date
Jordi Boggiano
6b81ac8153 CS fixes, refs #326 2014-02-23 16:06:45 +01:00
Benjamin Zikarsky
b56ed7b0fd Merge remote-tracking branch 'official/master' into gelf-php-compat
Conflicts:
	composer.json
2014-02-22 16:13:58 +01:00
Benjamin Zikarsky
f0ed3d8054 Allow for both mlehner/gelf-php and graylog2/gelf-php usage 2014-02-22 16:11:33 +01:00
Tiago Brito
17874ea306 Change color levels
Changed the Emergency color because the background was the same color as the foreground.
And also changed the Alert and Critical colors to increase the contrast between these levels.
2014-02-19 22:48:27 +00:00
Jordi Boggiano
4c74b127eb Tweak code to allow newlines in format, refs #322 2014-02-18 15:12:15 +01:00
Gunnar Lium
2aa09265fc Strip inline line breaks from LineFormatter entries. 2014-02-14 14:35:44 +01:00
Jordi Boggiano
6cabe95f23 Allow changing the HipChat message format, fixes #318 2014-02-06 21:35:10 +01:00
Jordi Boggiano
4814e79f3f CS fixes and a BC nitpick 2014-02-06 13:42:34 +01:00
Jordi Boggiano
2afc675520 Merge remote-tracking branch 'leevigraham/master' 2014-02-06 13:25:17 +01:00
Gábor Tóth
3a811ecfda fix normalizing exception trace
The trace does not include the file / line at which the exception is thrown
2014-02-06 12:46:03 +01:00
Leevi Graham
d37e916040 Add limit to batched records 2014-02-05 20:19:53 +11:00
Michael Grinko
fab4ec2c12 [minor] Indent was fixed 2014-01-15 11:01:53 +02:00
adlawson
3f5fd1dabc Remove unnecessary use statement 2014-01-14 12:56:38 +00:00
Benjamin Zikarsky
c8289fd654 Updated GelfHandler/GelfFormatter
Changes monolog to use the updated official graylog2/gelf-php
2013-12-28 18:57:39 +01:00
Jordi Boggiano
3926d95f8a CS fixes 2013-12-26 11:43:12 +01:00
Jordi Boggiano
cf2e93b1c3 Merge remote-tracking branch 'arturgspb/master' 2013-12-26 11:38:57 +01:00
Jordi Boggiano
d27f3c3c18 Merge pull request #295 from staabm/patch-5
Minor phpdoc fixes
2013-12-26 01:33:58 -08:00
Markus Staab
100a1b01f2 Minor phpdoc fixes 2013-12-26 00:25:22 +01:00
Markus Staab
9e536cfaba fix phpdoc 2013-12-26 00:18:20 +01:00
Milos Levacic
67a908796b Add name length check to the HipChatHandler
As explained in its docblock, the validation function will fall back to
a simple strlen check if mb_strlen is not available. However, that very
specific case is not one that was deemed important to support, as anyone
using UTF-8 in their code, without having mbstring available will
probably have bigger problems to worry about.

Fixes #289
2013-12-24 21:15:02 +01:00
Artur Geraschenko
ff43ef9860 Init IntrospectionProcessor with skip classes parameter with fixed array notation
Logger maybe use in other debug classes and I must be able to skip my debug classes.

For example: new IntrospectionProcessor(Logger::DEBUG, array('Monolog\\', 'Debug'))
2013-12-12 21:27:31 +03:00
Sergey Rabochiy
4d3723c68d Code style fix 2013-11-29 21:05:44 +07:00
Sergey Rabochiy
e012bf1b63 Fix boolean to string convertation. Fix double normalization.
Details bug:
$context = ["false", false]; // formatted as {"0":"false","1":"false"} when need {"0":"false","1":false}
2013-11-29 16:09:42 +07:00
Jordi Boggiano
6f5b3d2a9c Fix docblock 2013-11-25 14:58:14 +01:00
Jordi Boggiano
eaa3c05509 Fix CS 2013-11-25 14:25:05 +01:00
Jordi Boggiano
193e627a0b Merge removeLogger* methods in a simpler one, refs #273 2013-11-25 14:22:15 +01:00
Jordi Boggiano
c5ea3e6a95 Merge remote-tracking branch 'tatarko/master' 2013-11-25 14:18:53 +01:00
Tomáš Tatarko
0c3cf7842d Fixed outdated phpdoc 2013-11-24 14:18:03 +01:00
Tomáš Tatarko
0a5db1985c Removed addToRegistry() method 2013-11-24 11:51:46 +01:00
alsar
ed8c671660 added missing use statement 2013-11-23 21:12:05 +01:00
Jordi Boggiano
11cb918bbc Tweak html output a bit for readability, update readme, force unicode, refs #275 2013-11-20 13:44:25 +01:00
Jordi Boggiano
a27dfcd493 Merge remote-tracking branch 'tiagobrito/master' 2013-11-20 13:31:10 +01:00
Jordi Boggiano
89ba162dca Update readme, fix cs 2013-11-20 13:30:00 +01:00
Jordi Boggiano
aff8d92e29 Add caching, group exec calls in one, refs #274 2013-11-20 13:28:13 +01:00
Tiago Brito
e98c525dd3 convert $title and $th special characters to HTML 2013-11-20 11:34:14 +00:00
otternq
1c3b7a6cdd updated data assignment based on @Seldaek suggestion 2013-11-20 00:41:49 -08:00
Tiago Brito
b230483fa5 consistent spacing in title style attribute 2013-11-20 00:54:00 +00:00
Tiago Brito
2fd22fe386 consistent spacing in html tags 2013-11-20 00:52:01 +00:00
Tiago Brito
ec974cf3a1 convert $th content special characters to HTML and make all the tables with the same with 2013-11-19 23:39:11 +00:00
Tiago Brito
474250f5ff Fix english in doc blocks 2013-11-19 16:18:58 +00:00
Tiago Brito
06667ddf0b Add <pre> tag to define the json as a preformatted text. 2013-11-19 09:58:40 +00:00
Tiago Brito
5ce58ad471 Remove the unused $format parameter from the construct 2013-11-19 09:49:49 +00:00
Tiago Brito
87b0e65952 fix code-style and add documentation to addTitle and addRow methods 2013-11-19 02:00:04 +00:00
Tiago Brito
1435373649 add html email formatter 2013-11-18 21:38:10 +00:00
otternq
e1feb74001 removing whitespace from getCommit() value 2013-11-16 17:52:07 -08:00
otternq
9c57967700 adding a processor for basic git information
Adds the current Git Branch, and Git Commit key to the extra field
2013-11-16 17:40:16 -08:00
Jordi Boggiano
6225b22de9 Merge remote-tracking branch 'origin/master' 2013-11-14 20:48:31 +01:00
Jordi Boggiano
e8aa1013f5 Update license headers 2013-11-14 20:17:23 +01:00
Jordi Boggiano
97ed5e1ea3 Add check for curl ext 2013-11-14 20:15:52 +01:00
Jordi Boggiano
b793eccd76 Merge remote-tracking branch 'sobstel/master' 2013-11-14 20:14:38 +01:00