Skip to content

Releases: BinarCode/laravel-developer

2.0.0

30 Jun 11:10

Choose a tag to compare

Added

  • The exception logger will use now id as a primary key. Not uuid.

1.15.4

30 Jun 10:17

Choose a tag to compare

1.15.4 Pre-release
Pre-release
Store danger tag when storing exception.

1.15.3

30 Jun 10:04

Choose a tag to compare

Added

  • tags as a third parameter for devLog method

1.15.2

23 Jun 12:24

Choose a tag to compare

Added

  • id column to the exception_log table so we can sort easily.
  • Force fill the uuid column for ExceptionLog.

1.15.1

23 Jun 11:06
716ca7d

Choose a tag to compare

Fixed

  • Start recording telescope to save exception to db #10

1.15.0

16 Jun 08:06
0f60c13

Choose a tag to compare

Added

  • Custom slack channel #9

1.14.0

15 Jun 10:45

Choose a tag to compare

Added

  • Telescope support.

1.13.0

22 Apr 10:52

Choose a tag to compare

Added

Store logs

Sometimes you may want to store simple logs (for instance when you send some API requests from your app, you may want to store the payload):

$payload = [...];

devLog('Called Fedex API with:', $payload)

Now you will have an entry in your database table with the payload and the associated name.

1.12.12

11 Feb 08:29

Choose a tag to compare

Fixed

  • Message for slack

1.12.11

11 Feb 07:12
2121981

Choose a tag to compare

Adding

  • More information to slack (line, file, code exception).