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
\OC::$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']);
879
+
Server::get(LoggerInterface::class)->info(
880
+
'remove "' . $file['name'] . '" (' . $tmp . 'B) to meet the limit of trash bin size (50% of available quota) for user "{user}"',
881
+
[
882
+
'app' => 'files_trashbin',
883
+
'user' => $user,
884
+
]
885
+
);
880
886
$availableSpace += $tmp;
881
887
$size += $tmp;
882
888
} else {
@@ -907,16 +913,20 @@ public static function deleteExpiredFiles($files, $user) {
0 commit comments