You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Server::get(LoggerInterface::class)->info('remove "' . $file['name'] . '" (' . $tmp . 'B) to meet the limit of trash bin size (50% of available quota)', ['app' => 'files_trashbin']);
883
+
Server::get(LoggerInterface::class)->info(
884
+
'remove "' . $file['name'] . '" (' . $tmp . 'B) to meet the limit of trash bin size (50% of available quota) for user "{user}"',
885
+
[
886
+
'app' => 'files_trashbin',
887
+
'user' => $user,
888
+
]
889
+
);
884
890
$availableSpace += $tmp;
885
891
$size += $tmp;
886
892
} else {
@@ -911,16 +917,20 @@ public static function deleteExpiredFiles($files, $user) {
0 commit comments