From: Jörn Friedrich Dreyer Date: Thu, 2 Mar 2017 09:50:54 +0000 (+0100) Subject: log where a resource was not found X-Git-Tag: v12.0.0beta1~382^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6b71dd11b706c18ef0efce13eac53db3855da870;p=nextcloud-server.git log where a resource was not found Signed-off-by: Morris Jobke --- diff --git a/lib/private/Template/ResourceLocator.php b/lib/private/Template/ResourceLocator.php index 9015bf5d97c..e82a77ba65f 100755 --- a/lib/private/Template/ResourceLocator.php +++ b/lib/private/Template/ResourceLocator.php @@ -84,7 +84,7 @@ abstract class ResourceLocator { $this->doFindTheme($resource); } catch (ResourceNotFoundException $e) { $resourceApp = substr($resource, 0, strpos($resource, '/')); - $this->logger->debug('Could not find resource file "' . $e->getResourcePath() . '"', ['app' => $resourceApp]); + $this->logger->debug('Could not find resource file in theme "' . $e->getResourcePath() . '"', ['app' => $resourceApp]); } } }