Change logQuery from define() to OC::Config
This commit is contained in:
parent
2b8cf4959a
commit
63804f4153
|
@ -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,
|
||||
|
||||
|
|
|
@ -159,9 +159,6 @@ class OC_Config{
|
|||
if (defined('DEBUG') && DEBUG) {
|
||||
$content .= "define('DEBUG',true);\n";
|
||||
}
|
||||
if (defined('LOG_QUERIES') && LOG_QUERIES) {
|
||||
$content .= "define('LOG_QUERIES',true);\n";
|
||||
}
|
||||
$content .= "\$CONFIG = ";
|
||||
$content .= var_export(self::$cache, true);
|
||||
$content .= ";\n";
|
||||
|
|
|
@ -367,7 +367,7 @@ class OC_DB {
|
|||
|
||||
// Optimize the query
|
||||
$query = self::processQuery( $query );
|
||||
if(defined('LOG_QUERIES') && LOG_QUERIES === true) {
|
||||
if(OC_Config::getValue( "log_query", false)) {
|
||||
OC_Log::write('core', 'DB prepare : '.$query, OC_Log::DEBUG);
|
||||
}
|
||||
self::connect();
|
||||
|
@ -954,7 +954,7 @@ class PDOStatementWrapper{
|
|||
* make execute return the result instead of a bool
|
||||
*/
|
||||
public function execute($input=array()) {
|
||||
if(defined('LOG_QUERIES') && LOG_QUERIES === true) {
|
||||
if(OC_Config::getValue( "log_query", false)) {
|
||||
$params_str = str_replace("\n"," ",var_export($input,true));
|
||||
OC_Log::write('core', 'DB execute with arguments : '.$params_str, OC_Log::DEBUG);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue