diff options
author | Brice Maron <brice@bmaron.net> | 2013-03-30 22:36:55 +0100 |
---|---|---|
committer | Brice Maron <brice@bmaron.net> | 2013-03-30 22:36:55 +0100 |
commit | 63804f415328e76d1474fb5373134124c8caf029 (patch) | |
tree | f4b0845178b2076409d09545e43956fba7585208 /config | |
parent | 2b8cf4959afc4fdbcf6c6e0f6a3870c7292c1d86 (diff) | |
download | nextcloud-server-63804f415328e76d1474fb5373134124c8caf029.tar.gz nextcloud-server-63804f415328e76d1474fb5373134124c8caf029.zip |
Change logQuery from define() to OC::Config
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 995a02f6d94..95be5a9f012 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -135,6 +135,10 @@ $CONFIG = array( /* Loglevel to start logging at. 0=DEBUG, 1=INFO, 2=WARN, 3=ERROR (default is WARN) */ "loglevel" => "", +/* Append All database query and parameters to the log file. + (whatch out, this option can increase the size of your log file)*/ +"log_query" => false, + /* Lifetime of the remember login cookie, default is 15 days */ "remember_login_cookie_lifetime" => 60*60*24*15, |