Skip to content

Commit 672a8e9

Browse files
committed
Merge branch 'master' into 7.x
2 parents b2f6fca + cdeb3d7 commit 672a8e9

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ Logging and Notifications for Laravel Console Commands.
2626
| 5.2.* | [5.2.*](https://github.com/dmitry-ivanov/laravel-console-logger/tree/5.2) |
2727
| 5.1.* | [5.1.*](https://github.com/dmitry-ivanov/laravel-console-logger/tree/5.1) |
2828

29+
![Laravel Console Logger - Demo](doc/img/demo.gif)
30+
2931
## Table of contents
3032

3133
- [Usage](#usage)

doc/img/demo.gif

1.13 MB
Loading

src/Loggable/Notifications/EmailChannel/MonologHtmlFormatter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ protected function composeTitle(array $record)
115115
$environment = app()->environment();
116116
$environment = e(str_upper($environment));
117117
$title .= '<style>.title { padding-bottom: 0 !important; } .subtitle { padding-top: 0 !important; }</style>';
118-
$title .= "<h3 class='subtitle {$levelName}'>This notification was sent from `{$environment}` environment!</h3>";
118+
$title .= "<h3 class='subtitle {$levelName}'>This notification has been sent from the `{$environment}` environment!</h3>";
119119

120120
return $title;
121121
}

tests/Loggable/Notifications/EmailChannel/MonologHtmlFormatterTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ private function composeExpectedOutput(array $record)
165165

166166
$subtitle =
167167
"<style>.title { padding-bottom: 0 !important; } .subtitle { padding-top: 0 !important; }</style>
168-
<h3 class='subtitle {$record['level_name']}'>This notification was sent from `TESTING` environment!</h3>";
168+
<h3 class='subtitle {$record['level_name']}'>This notification has been sent from the `TESTING` environment!</h3>";
169169
if ($this->app->environment('production')) {
170170
$subtitle = '';
171171
}

0 commit comments

Comments
 (0)