Skip to content
This repository has been archived by the owner on Jan 11, 2022. It is now read-only.

Releases: swisnl/laravel-graylog2

Add basic Laravel 5.6+ support

22 Jan 13:36
2292b97
Compare
Choose a tag to compare

Added

Remove unnecessary provides-method

25 Jul 15:10
a74835f
Compare
Choose a tag to compare

Removed

  • Remove unnecessary provides-method from the service provider. This was only needed for deferred loading, which has been removed in 0.6.3

Revert deferred loading of the service provider

19 Jun 13:05
Compare
Choose a tag to compare

Fixed

  • The service provider is doing more than just registering bindings. Therefor deferred loading will break stuff, like package discovery. Deferred loading has been reverted.

Improved service provider

19 Jun 07:58
1ae48b5
Compare
Choose a tag to compare

Changed

  • Moved service provider logic from the register-method to the boot-method. Also defer loading the service provider until it is used. (Thanks @alberto-bottarini)

0.6.1

01 Jun 09:20
4036180
Compare
Choose a tag to compare

Fixed

  • Missed a comma in the argument

0.6.0

01 Jun 07:44
Compare
Choose a tag to compare

Added

  • You can adjust the minimum log level by changing the value log_levelin configuration (thanks @BrokenSt0rm)

Added validation of Graylog transport configuration values

24 Jan 20:59
7cb79a9
Compare
Choose a tag to compare
  • Added a comment to the config to clarify the options
  • The following values are valid for the transport type:
    • udp and UDP
    • tcp and TCP

Allow bubbling of all exceptions

14 Dec 10:07
Compare
Choose a tag to compare
  • Allow all exceptions to bubble to other Monolog handlers
  • Added examples to the readme

Changes to message processing

29 Sep 15:21
Compare
Choose a tag to compare
  • Added Facade for easier access
  • Adding additional data is now handled by MessageProcessors. By default, we ship an ExceptionProcessor and a RequestProcessor. Additional processors can be made by implementing ProcessorInterface and adding them to your AppProvider.
  • Request logging can now add GET and/or POST parameters. POST parameters can be blacklisted (think passwords/usernames)

Fixed default UDP chunk length

07 Sep 07:25
Compare
Choose a tag to compare
Fixes and compatibility

- Changed default chunk size
- Added troubleshooting to readme
- Added config to disable adding the full stacktrace to the full message
- setVersion is for GELF version and not platform version