diff options
-rw-r--r-- | apps/theming/lib/Jobs/MigrateBackgroundImages.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/theming/lib/Jobs/MigrateBackgroundImages.php b/apps/theming/lib/Jobs/MigrateBackgroundImages.php index 536dde943b1..54c0d591e40 100644 --- a/apps/theming/lib/Jobs/MigrateBackgroundImages.php +++ b/apps/theming/lib/Jobs/MigrateBackgroundImages.php @@ -195,10 +195,10 @@ class MigrateBackgroundImages extends QueuedJob { try { $file->delete(); } catch (NotPermittedException $e) { - $this->logger->info('Could not delete {name} due to permissions. It is safe to delete manually inside data -> appdata -> theming -> global.', + $this->logger->info('Could not delete {file} due to permissions. It is safe to delete manually inside data -> appdata -> theming -> global.', [ 'app' => 'theming', - 'name' => $file->getName(), + 'file' => $file->getName(), 'exception' => $e, ] ); |