@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | $nodeLimit = $this->config->getSystemValueInt('metadata_max_filesize', self::DEFAULT_MAX_FILESIZE); |
101 | 101 | $nodeLimitMib = $nodeLimit * 1024 * 1024; |
102 | 102 | if ($nodeSize > $nodeLimitMib) { |
103 | - $this->logger->debug('Skipping generating metadata for fileid ' . $node->getId() . " as its size exceeds configured 'metadata_max_filesize'."); |
|
103 | + $this->logger->debug('Skipping generating metadata for fileid '.$node->getId()." as its size exceeds configured 'metadata_max_filesize'."); |
|
104 | 104 | continue; |
105 | 105 | } |
106 | 106 | |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | IFilesMetadataManager::PROCESS_LIVE | IFilesMetadataManager::PROCESS_BACKGROUND |
114 | 114 | ); |
115 | 115 | } catch (\Throwable $ex) { |
116 | - $this->logger->warning('Error while generating metadata for fileid ' . $node->getId(), ['exception' => $ex]); |
|
116 | + $this->logger->warning('Error while generating metadata for fileid '.$node->getId(), ['exception' => $ex]); |
|
117 | 117 | } |
118 | 118 | } |
119 | 119 | } |