summaryrefslogtreecommitdiffstats
path: root/core/setup
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-07-03 14:06:40 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-07-03 18:00:16 +0200
commitd3ac73c0c9419750c65d3ccb8f0b0c25edacf34f (patch)
tree6517676c49da188ae4ee832245236fe0e1e25cf3 /core/setup
parent68fd74963eda73fe0e3173cde495c284ea1fd8f4 (diff)
downloadnextcloud-server-d3ac73c0c9419750c65d3ccb8f0b0c25edacf34f.tar.gz
nextcloud-server-d3ac73c0c9419750c65d3ccb8f0b0c25edacf34f.zip
Remove OC_Log
Diffstat (limited to 'core/setup')
-rw-r--r--core/setup/controller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/setup/controller.php b/core/setup/controller.php
index f5255fb453b..f616ae5a5b3 100644
--- a/core/setup/controller.php
+++ b/core/setup/controller.php
@@ -105,7 +105,7 @@ class Controller {
public function loadAutoConfig($post) {
if( file_exists($this->autoConfigFile)) {
- \OC_Log::write('core', 'Autoconfig file found, setting up ownCloud…', \OC_Log::INFO);
+ \OCP\Util::writeLog('core', 'Autoconfig file found, setting up ownCloud…', \OCP\Util::INFO);
$AUTOCONFIG = array();
include $this->autoConfigFile;
$post = array_merge ($post, $AUTOCONFIG);