Skip to content

Commit

Permalink
Merge pull request nextcloud#42991 from nextcloud/lowToInfo
Browse files Browse the repository at this point in the history
Lower failed movie preview generation logs to level info
  • Loading branch information
solracsf authored Feb 10, 2024
2 parents f210b6b + 6f4d0fe commit b03199e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/Preview/Movie.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ private function generateThumbNail(int $maxX, int $maxY, string $absPath, int $s

if ($second === 0) {
$logger = \OC::$server->get(LoggerInterface::class);
$logger->error('Movie preview generation failed Output: {output}', ['app' => 'core', 'output' => $output]);
$logger->info('Movie preview generation failed Output: {output}', ['app' => 'core', 'output' => $output]);
}

unlink($tmpPath);
Expand Down

0 comments on commit b03199e

Please sign in to comment.