From b07faa996f22f95e6edadf819a5eae6c5521170e Mon Sep 17 00:00:00 2001 From: Nathan Adams Date: Tue, 10 May 2016 22:00:40 -0500 Subject: [PATCH] adding logging to the default config file --- indefero/src/IDF/conf/idf.php-dist | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/indefero/src/IDF/conf/idf.php-dist b/indefero/src/IDF/conf/idf.php-dist index 00ef9cd..e4aa34d 100644 --- a/indefero/src/IDF/conf/idf.php-dist +++ b/indefero/src/IDF/conf/idf.php-dist @@ -553,4 +553,9 @@ $cfg['activity_section_weights'] = array( # record very little activity, then it might be a good idea to bump this value # high enough to show a proper activity index for those projects as well. $cfg['activity_lookback'] = 7; +$cfg["log_level"] = Pluf_Log::ALL; +$cfg["log_handler"] = 'Pluf_Log_File'; +$cfg["log_delayed"] = true; +$cfg["pluf_log_file"] = '/home/www/pluf.log'; +Pluf_Log::$level = Pluf_Log::ALL; return $cfg; \ No newline at end of file