diff options
author | Robin McCorkell <rmccorkell@owncloud.com> | 2015-08-17 23:16:39 +0100 |
---|---|---|
committer | Robin McCorkell <rmccorkell@owncloud.com> | 2015-08-19 12:55:27 +0100 |
commit | 07e119a3f8e660594bbab19246fcbf674c61bda1 (patch) | |
tree | f7f34228a63a9397d766375ad0aeef980172c94e /core/register_command.php | |
parent | 67536e71aa92ee9c71592b5e3b48831e7c20a71a (diff) | |
download | nextcloud-server-07e119a3f8e660594bbab19246fcbf674c61bda1.tar.gz nextcloud-server-07e119a3f8e660594bbab19246fcbf674c61bda1.zip |
Introduce occ command to manage owncloud log backend
log:owncloud can set/display the log filename and log file rotation size
Diffstat (limited to 'core/register_command.php')
-rw-r--r-- | core/register_command.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/register_command.php b/core/register_command.php index b05d0f3aebb..9c13c0967f8 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -59,6 +59,7 @@ if (\OC::$server->getConfig()->getSystemValue('installed', false)) { $application->add(new OC\Core\Command\Encryption\Status(\OC::$server->getEncryptionManager())); $application->add(new OC\Core\Command\Log\Manage(\OC::$server->getConfig())); + $application->add(new OC\Core\Command\Log\OwnCloud(\OC::$server->getConfig())); $application->add(new OC\Core\Command\Maintenance\MimeTypesJS()); $application->add(new OC\Core\Command\Maintenance\Mode(\OC::$server->getConfig())); |