From 31b136ec92bcf7ac1c0b5c7dacad2950d7f2b29b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Gangloff?= Date: Thu, 15 Aug 2024 19:54:36 +0200 Subject: [PATCH] fix: unknown entity logging --- src/Service/RDAPService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Service/RDAPService.php b/src/Service/RDAPService.php index 60a6126..c917ff5 100644 --- a/src/Service/RDAPService.php +++ b/src/Service/RDAPService.php @@ -364,7 +364,7 @@ readonly class RDAPService if (null === $entity) { $entity = new Entity(); - } else { + $this->logger->info('The entity {handle} was not known to this Domain Watchdog instance.', [ 'handle' => $rdapEntity['handle'], ]);