summaryrefslogtreecommitdiffstats
path: root/settings/ajax/setloglevel.php
blob: 542219f86c63cf3b9fb35522f65c2892695d3d17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?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.
 */

OC_Util::checkAdminUser();
OCP\JSON::callCheck();

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

echo 'true';