Skip to content

Commit e9687a6

Browse files
authored
Merge 5.x into 6.x
2 parents 0609301 + 33a8f4d commit e9687a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Block/BlockRenderer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function render(BlockContextInterface $blockContext, ?Response $response
3535

3636
if (null !== $this->logger) {
3737
$this->logger->info(
38-
\sprintf('[cms::renderBlock] block.id=%d, block.type=%s', $block->getId() ?? '', $block->getType() ?? '')
38+
\sprintf('[cms::renderBlock] block.id=%s, block.type=%s', $block->getId() ?? '', $block->getType() ?? '')
3939
);
4040
}
4141

@@ -47,7 +47,7 @@ public function render(BlockContextInterface $blockContext, ?Response $response
4747
} catch (\Throwable $exception) {
4848
if (null !== $this->logger) {
4949
$this->logger->error(\sprintf(
50-
'[cms::renderBlock] block.id=%d - error while rendering block - %s',
50+
'[cms::renderBlock] block.id=%s - error while rendering block - %s',
5151
$block->getId() ?? '',
5252
$exception->getMessage()
5353
), compact('exception'));

0 commit comments

Comments
 (0)