Skip to content
Snippets Groups Projects
Commit 55df840b authored by Morris Jobke's avatar Morris Jobke Committed by GitHub
Browse files

Merge pull request #3935 from nextcloud/downstream-27293

log where a resource was not found
parents 313173dd 6b71dd11
No related branches found
No related tags found
No related merge requests found
...@@ -84,7 +84,7 @@ abstract class ResourceLocator { ...@@ -84,7 +84,7 @@ abstract class ResourceLocator {
$this->doFindTheme($resource); $this->doFindTheme($resource);
} catch (ResourceNotFoundException $e) { } catch (ResourceNotFoundException $e) {
$resourceApp = substr($resource, 0, strpos($resource, '/')); $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]);
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment