Commit 653e42d
committed
bug symfony#59908 [Messenger] Reduce keepalive request noise (ro0NL)
This PR was merged into the 7.2 branch.
Discussion
----------
[Messenger] Reduce keepalive request noise
| Q | A
| ------------- | ---
| Branch? | 7.2
| Bug fix? | yes
| New feature? | no
| Deprecations? | no
| Issues | Fix #... <!-- prefix each issue number with "Fix #", no need to create an issue if none exists, explain below instead -->
| License | MIT
Currently `messenger:consume --keepalive` creates a lot of noise (INFO log every 5 sec by default).
```
13:34:59 INFO [messenger] Sending keepalive request.
13:35:04 INFO [messenger] Sending keepalive request.
```
I propose to use DEBUG instead. We can also remove this log, since there's already a keepalive log per message ID: https://github.com/symfony/symfony/blob/8b008510a48adba218d6358a3ab52141daacbaa8/src/Symfony/Component/Messenger/Worker.php#L303-L306
cc `@HypeMC`
Commits
-------
01bfc8d [Messenger] Reduce keepalive request noiseFile tree
1 file changed
+1
-1
lines changed- src/Symfony/Component/Messenger/Command
1 file changed
+1
-1
lines changedLines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
290 | 290 | | |
291 | 291 | | |
292 | 292 | | |
293 | | - | |
| 293 | + | |
294 | 294 | | |
295 | 295 | | |
296 | 296 | | |
| |||
0 commit comments