diff --git a/apps/files_trashbin/lib/Trashbin.php b/apps/files_trashbin/lib/Trashbin.php index bdd7323d4a2a5..9763ef0d5cbc9 100644 --- a/apps/files_trashbin/lib/Trashbin.php +++ b/apps/files_trashbin/lib/Trashbin.php @@ -941,7 +941,7 @@ protected static function deleteFiles(array $files, string $user, int|float $ava if ($availableSpace <= 0 && $expiration->isExpired($file['mtime'], true)) { $tmp = self::delete($file['name'], $user, $file['mtime']); Server::get(LoggerInterface::class)->info( - 'remove "' . $file['name'] . '" (' . $tmp . 'B) to meet the limit of trash bin size (50% of available quota) for user "{user}"', + 'remove "' . $file['name'] . '" (' . $tmp . 'B) to meet the limit of trash bin size (' . self::DEFAULTMAXSIZE . '% of available quota) for user "{user}"', [ 'app' => 'files_trashbin', 'user' => $user,