diff options
author | Thomas Pulzer <t.pulzer@kniel.de> | 2016-07-04 11:50:32 +0200 |
---|---|---|
committer | Thomas Pulzer <t.pulzer@kniel.de> | 2016-07-04 11:50:32 +0200 |
commit | 90b7f74da714209ee9c6a9a3243dacbaee2dc435 (patch) | |
tree | 399f35c9ce80df45b39217f982535249aa3398ca /core/Command | |
parent | 978ab660f737edbc38e7847f86e6106fb456dcb7 (diff) | |
download | nextcloud-server-90b7f74da714209ee9c6a9a3243dacbaee2dc435.tar.gz nextcloud-server-90b7f74da714209ee9c6a9a3243dacbaee2dc435.zip |
Changed name of default logfile from owncloud.log to nextcloud.log.
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); |