We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62743e0 commit a6f3addCopy full SHA for a6f3add
README.md
@@ -357,6 +357,18 @@ class DocumentGenerator
357
}
358
```
359
360
+## Store logs
361
+
362
+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):
363
364
+```php
365
+$payload = [...];
366
367
+devLog('Called Fedex API with:', $payload)
368
+```
369
370
+Now you will have an entry in your database table with the payload and the associated name.
371
372
## Testing
373
374
``` bash
0 commit comments