From 54d1ef257d1b931c7160883aa10c08df2161baf2 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Thu, 12 Dec 2024 21:01:26 +1300 Subject: [PATCH] Remove logs --- app/http.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/http.php b/app/http.php index 839272bd31..b14e653c44 100644 --- a/app/http.php +++ b/app/http.php @@ -292,16 +292,12 @@ $http->on(Constant::EVENT_START, function (Server $http) use ($payloadSize, $reg Console::success('[Setup] - Skip: metadata table already exists'); } - Console::info('Checking audit collection'); if ($dbForProject->getCollection(Audit::COLLECTION)->isEmpty()) { - Console::info('Creating audit collection'); $audit = new Audit($dbForProject); $audit->setup(); } - Console::info('Checking abuse collection'); if ($dbForProject->getCollection(TimeLimit::COLLECTION)->isEmpty()) { - Console::info('Creating abuse collection'); $adapter = new TimeLimit("", 0, 1, $dbForProject); $adapter->setup(); }