Skip to content

Commit

Permalink
Merge pull request #43510 from nextcloud/backport/42991/stable27
Browse files Browse the repository at this point in the history
[stable27] Lower failed movie preview generation logs to level info
  • Loading branch information
solracsf authored Feb 10, 2024
2 parents fb909f6 + 7f0a4e7 commit 7e1fc48
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 7e1fc48

Please sign in to comment.