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']);
872
+
Server::get(LoggerInterface::class)->info(
873
+
'remove "' . $file['name'] . '" (' . $tmp . 'B) to meet the limit of trash bin size (50% of available quota) for user "{user}"',
874
+
[
875
+
'app' => 'files_trashbin',
876
+
'user' => $user,
877
+
]
878
+
);
873
879
$availableSpace += $tmp;
874
880
$size += $tmp;
875
881
} else {
@@ -900,16 +906,20 @@ public static function deleteExpiredFiles($files, $user) {
0 commit comments