8000 Update RedispatchMessage debug representation · symfony/symfony@3f01b9c · GitHub
[go: up one dir, main page]

Skip to content

Commit 3f01b9c

Browse files
committed
Update RedispatchMessage debug representation
1 parent b995e12 commit 3f01b9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Messenger/Message/RedispatchMessage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ public function __toString(): string
2929
{
3030
$message = $this->envelope instanceof Envelope ? $this->envelope->getMessage() : $this->envelope;
3131

32-
return sprintf('RedispatchMessage<%s>', $message instanceof \Stringable ? (string)$message : $message::class);
32+
return sprintf('%s via %s', $message instanceof \Stringable ? (string)$message : $message::class, implode(', ', (array)$this->transportNames));
3333
}
3434
}

0 commit comments

Comments
 (0)
0