mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-10-06 21:46:03 +08:00
log whole error messages
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
088fd118be
commit
cfeb8d872a
3 changed files with 9 additions and 0 deletions
|
@ -7,6 +7,9 @@ ini_set('memory_limit', '2048M');
|
|||
// set max execution time to 2h just in case of a very slow internet connection
|
||||
ini_set('max_execution_time', '7200');
|
||||
|
||||
// Log whole log messages
|
||||
ini_set('log_errors_max_len', '0');
|
||||
|
||||
use DI\Container;
|
||||
use Slim\Csrf\Guard;
|
||||
use Slim\Factory\AppFactory;
|
||||
|
|
|
@ -4,6 +4,9 @@ declare(strict_types=1);
|
|||
// increase memory limit to 2GB
|
||||
ini_set('memory_limit', '2048M');
|
||||
|
||||
// Log whole log messages
|
||||
ini_set('log_errors_max_len', '0');
|
||||
|
||||
use DI\Container;
|
||||
|
||||
require __DIR__ . '/../../vendor/autoload.php';
|
||||
|
|
|
@ -4,6 +4,9 @@ declare(strict_types=1);
|
|||
// increase memory limit to 2GB
|
||||
ini_set('memory_limit', '2048M');
|
||||
|
||||
// Log whole log messages
|
||||
ini_set('log_errors_max_len', '0');
|
||||
|
||||
use DI\Container;
|
||||
|
||||
require __DIR__ . '/../../vendor/autoload.php';
|
||||
|
|
Loading…
Add table
Reference in a new issue