Skip to content

Commit cc9f937

Browse files
committed
Use debug level log for no siteaccess match
1 parent 7ab3c8a commit cc9f937

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

bundle/SiteAccess/Resolver/NativeResolver.php

+6-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,12 @@ private function internalResolve(Location $location): string
9797

9898
// Error: No siteaccesses were found for the Location, return the current siteaccess
9999
if (empty($siteaccessSet)) {
100-
$this->logger->error(sprintf('Found no siteaccesses for Location #%d', $location->id));
100+
$this->logger->debug(
101+
sprintf(
102+
'Found no siteaccesses for Location #%d',
103+
$location->id
104+
),
105+
);
101106

102107
return $currentSiteaccess;
103108
}

0 commit comments

Comments
 (0)