Skip to content
Snippets Groups Projects
Unverified Commit e302266a authored by Morris Jobke's avatar Morris Jobke Committed by GitHub
Browse files

Merge pull request #9137 from nextcloud/default-log-rotate-size

Set the default log rotate size to 100 MB
parents 52c0e02b 058f8123
No related branches found
No related tags found
No related merge requests found
......@@ -764,9 +764,9 @@ $CONFIG = array(
* old logfile reaches your limit. If a rotated log file is already present, it
* will be overwritten.
*
* Defaults to ``0`` (no rotation)
* Defaults to 100 MB
*/
'log_rotate_size' => false,
'log_rotate_size' => 100 * 1024 * 1024,
/**
......
......@@ -105,7 +105,7 @@ class File extends Command implements Completion\CompletionAwareInterface {
$defaultLogFile = rtrim($dataDir, '/').'/nextcloud.log';
$output->writeln('Log file: '.$this->config->getSystemValue('logfile', $defaultLogFile));
$rotateSize = $this->config->getSystemValue('log_rotate_size', 0);
$rotateSize = $this->config->getSystemValue('log_rotate_size', 100*1024*1024);
if ($rotateSize) {
$rotateString = \OCP\Util::humanFileSize($rotateSize);
} else {
......
......@@ -36,7 +36,7 @@ class Rotate extends \OC\BackgroundJob\Job {
public function run($dummy) {
$systemConfig = \OC::$server->getSystemConfig();
$logFile = $systemConfig->getValue('logfile', $systemConfig->getValue('datadirectory', \OC::$SERVERROOT . '/data') . '/nextcloud.log');
$this->max_log_size = \OC::$server->getConfig()->getSystemValue('log_rotate_size', false);
$this->max_log_size = \OC::$server->getConfig()->getSystemValue('log_rotate_size', 100 * 1024 * 1024);
if ($this->max_log_size) {
$filesize = @filesize($logFile);
if ($filesize >= $this->max_log_size) {
......
......@@ -105,7 +105,7 @@ class FileTest extends TestCase {
['log_type', 'file', 'log_type_value'],
['datadirectory', \OC::$SERVERROOT.'/data', '/data/directory/'],
['logfile', '/data/directory/nextcloud.log', '/var/log/nextcloud.log'],
['log_rotate_size', 0, 5 * 1024 * 1024],
['log_rotate_size', 100 * 1024 * 1024, 5 * 1024 * 1024],
]));
$this->consoleOutput->expects($this->at(0))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment