summaryrefslogtreecommitdiffstats
path: root/settings/Controller/LogSettingsController.php
diff options
context:
space:
mode:
Diffstat (limited to 'settings/Controller/LogSettingsController.php')
-rw-r--r--settings/Controller/LogSettingsController.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/Controller/LogSettingsController.php b/settings/Controller/LogSettingsController.php
index ce4913c2478..23e0fba902a 100644
--- a/settings/Controller/LogSettingsController.php
+++ b/settings/Controller/LogSettingsController.php
@@ -93,8 +93,8 @@ class LogSettingsController extends Controller {
*/
public function getEntries($count=50, $offset=0) {
return new JSONResponse([
- 'data' => \OC\Log\Owncloud::getEntries($count, $offset),
- 'remain' => count(\OC\Log\Owncloud::getEntries(1, $offset + $count)) !== 0,
+ 'data' => \OC\Log\File::getEntries($count, $offset),
+ 'remain' => count(\OC\Log\File::getEntries(1, $offset + $count)) !== 0,
]);
}
@@ -106,7 +106,7 @@ class LogSettingsController extends Controller {
* @return StreamResponse
*/
public function download() {
- $resp = new StreamResponse(\OC\Log\Owncloud::getLogFilePath());
+ $resp = new StreamResponse(\OC\Log\File::getLogFilePath());
$resp->addHeader('Content-Type', 'application/octet-stream');
$resp->addHeader('Content-Disposition', 'attachment; filename="nextcloud.log"');
return $resp;