diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2015-04-09 12:36:10 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2015-05-18 10:57:52 +0200 |
commit | 7a8072e958f6956c131ca12e5b7387bcadef1820 (patch) | |
tree | 37b3d34a30e1a09b41deb7d122746e374895c824 /apps/files_sharing/ajax/list.php | |
parent | 73a3086945b41afa39debd89481c021934dedb67 (diff) | |
download | nextcloud-server-7a8072e958f6956c131ca12e5b7387bcadef1820.tar.gz nextcloud-server-7a8072e958f6956c131ca12e5b7387bcadef1820.zip |
Move core apps from OC_Log::write to OCP\Util
Diffstat (limited to 'apps/files_sharing/ajax/list.php')
-rw-r--r-- | apps/files_sharing/ajax/list.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/ajax/list.php b/apps/files_sharing/ajax/list.php index 354041fed9d..d09b61fd4ae 100644 --- a/apps/files_sharing/ajax/list.php +++ b/apps/files_sharing/ajax/list.php @@ -27,7 +27,7 @@ OCP\JSON::checkAppEnabled('files_sharing'); if(!isset($_GET['t'])){ \OC_Response::setStatus(\OC_Response::STATUS_BAD_REQUEST); - \OC_Log::write('core-preview', 'No token parameter was passed', \OC_Log::DEBUG); + \OCP\Util::writeLog('core-preview', 'No token parameter was passed', \OCP\Util::DEBUG); exit; } |