diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-07-04 13:25:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-04 13:25:00 +0200 |
commit | 77082c20a77c7202129600efbd74b8871b731ff5 (patch) | |
tree | e780e5f030a8558ccd6048afce8e7d924742f0d3 /config | |
parent | 2f475a9f1e39933a7ca9dbbb047916d70068f308 (diff) | |
parent | bca4f42e146749e5229ca56ddb7551e7bc4a27ab (diff) | |
download | nextcloud-server-77082c20a77c7202129600efbd74b8871b731ff5.tar.gz nextcloud-server-77082c20a77c7202129600efbd74b8871b731ff5.zip |
Merge pull request #305 from Faldon/master
Changing name of default logfile
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 512a5d05ba7..6285e096ba7 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -549,7 +549,7 @@ $CONFIG = array( */ /** - * By default the Nextcloud logs are sent to the ``owncloud.log`` file in the + * By default the Nextcloud logs are sent to the ``nextcloud.log`` file in the * default Nextcloud data directory. * If syslogging is desired, set this parameter to ``syslog``. * Setting this parameter to ``errorlog`` will use the PHP error_log function @@ -559,9 +559,9 @@ $CONFIG = array( /** * Log file path for the Nextcloud logging type. - * Defaults to ``[datadirectory]/owncloud.log`` + * Defaults to ``[datadirectory]/nextcloud.log`` */ -'logfile' => '/var/log/owncloud.log', +'logfile' => '/var/log/nextcloud.log', /** * Loglevel to start logging at. Valid values are: 0 = Debug, 1 = Info, 2 = |