Skip to content

Commit

Permalink
remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
bennet0496 committed Sep 11, 2023
1 parent ff3099e commit f4df6c1
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions nextcloud_attachments.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,6 @@ public function init(): void
*/
public function add_preferences(array $param): array
{
// self::log(print_r($param, true));

$rcmail = rcmail::get_instance();
$prefs = $rcmail->user->get_prefs();
$this->load_config();
Expand Down Expand Up @@ -148,8 +146,6 @@ public function add_preferences(array $param): array
];
}

self::log(print_r($blocks, true));

return ["blocks" => $blocks];
}

Expand Down Expand Up @@ -189,7 +185,7 @@ public function fix_attachment(array $args): array
*/
public function intercept_filesize(mixed $param): void
{
self::log(print_r($param, true));
// self::log(print_r($param, true));
$rcmail = rcmail::get_instance();
// files are marked to cloud upload
if (isset($_REQUEST['_target'] ) && $_REQUEST['_target'] == "cloud") {
Expand Down

0 comments on commit f4df6c1

Please sign in to comment.