diff options
Diffstat (limited to 'core/Command')
-rw-r--r-- | core/Command/Log/OwnCloud.php | 2 | ||||
-rw-r--r-- | core/Command/Upgrade.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/Command/Log/OwnCloud.php b/core/Command/Log/OwnCloud.php index 7213f6726a2..b469f2064f7 100644 --- a/core/Command/Log/OwnCloud.php +++ b/core/Command/Log/OwnCloud.php @@ -95,7 +95,7 @@ class OwnCloud extends Command { $output->writeln('Log backend ownCloud: '.$enabledText); $dataDir = $this->config->getSystemValue('datadirectory', \OC::$SERVERROOT.'/data'); - $defaultLogFile = rtrim($dataDir, '/').'/owncloud.log'; + $defaultLogFile = rtrim($dataDir, '/').'/nextcloud.log'; $output->writeln('Log file: '.$this->config->getSystemValue('logfile', $defaultLogFile)); $rotateSize = $this->config->getSystemValue('log_rotate_size', 0); diff --git a/core/Command/Upgrade.php b/core/Command/Upgrade.php index 61b2e59a353..3550271fb5b 100644 --- a/core/Command/Upgrade.php +++ b/core/Command/Upgrade.php @@ -300,7 +300,7 @@ class Upgrade extends Command { //Possible scenario: ownCloud core is updated but an app failed $output->writeln('<warning>ownCloud is in maintenance mode</warning>'); $output->write('<comment>Maybe an upgrade is already in process. Please check the ' - . 'logfile (data/owncloud.log). If you want to re-run the ' + . 'logfile (data/nextcloud.log). If you want to re-run the ' . 'upgrade procedure, remove the "maintenance mode" from ' . 'config.php and call this script again.</comment>' , true); |