From 0a09eb7f89166a3227ca2702f0d2b528df504465 Mon Sep 17 00:00:00 2001 From: Oliver Kaufmann Date: Mon, 17 Oct 2022 17:38:35 +0200 Subject: [PATCH] extend docs --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index d7d5dcc..451ea74 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,19 @@ return [ */ 'compress-messages' => env('NOTIFICATION_LOG_COMPRESS_MESSAGES', false), + + /* + |-------------------------------------------------------------------------- + | Resolve Notification Message + |-------------------------------------------------------------------------- + | + | If this is enabled, the Logger will try to resolve the built message + | out of the notification. This is useful if you want to debug your + | sent notifications. + | + */ + + 'resolve-notification-message' => env('NOTIFICATION_LOG_RESOLVE_NOTIFICATION_MESSAGE', false), ]; ```