summaryrefslogtreecommitdiffstats
path: root/settings/ajax/setloglevel.php
blob: 4b97ba2aa32fe08aa8508f33f9b58066abdd80a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
/**
 * Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com>
 * This file is licensed under the Affero General Public License version 3 or later.
 * See the COPYING-README file.
 */

require_once('../../lib/base.php');
OC_Util::checkAdminUser();
OCP\JSON::callCheck();

OC_Config::setValue( 'loglevel', $_POST['level'] );

echo 'true';

?>