Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authormattpiwik <matthieu.aubry@gmail.com>2011-04-15 10:28:56 +0400
committermattpiwik <matthieu.aubry@gmail.com>2011-04-15 10:28:56 +0400
commitddfcd645c7e76e41be029ce119fe6c70029042e2 (patch)
treeb26d37f0cc6f6b3d3227eb77adf433c9032366fd /config
parentb0ea1eb617325ee5081731aaf34f7afdc45e213a (diff)
Adding two new parameters:
; if set to 1, only requests done in CLI mode (eg. the archive.sh cron run) will be logged log_only_when_cli = 0 ; if set to 1, only requests with "&debug" parameter will be logged log_only_when_debug_parameter = 0 this will make lot easier to enable debug and not mess up everything (eg. on the demo, or if piwik is heavily used by other concurrent users or via the API) git-svn-id: http://dev.piwik.org/svn/trunk@4472 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'config')
-rw-r--r--config/global.ini.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/config/global.ini.php b/config/global.ini.php
index 910423ef34..d35a627939 100644
--- a/config/global.ini.php
+++ b/config/global.ini.php
@@ -47,7 +47,7 @@ always_archive_data_range = 0;
; if set to 1, all the SQL queries will be recorded by the profiler
; and a profiling summary will be printed at the end of the request
-; NOTE: you must also set [log]logger_message[] = "screen" to enable the profiler to print on screen
+; NOTE: you must also set [log] logger_message[] = "screen" to enable the profiler to print on screen
enable_sql_profiler = 0
; if set to 1, a Piwik tracking code will be included in the Piwik UI footer and will track visits, pages, etc. to idsite = 1
@@ -342,6 +342,14 @@ encryption = ; SMTP transport-layer encryption, either 'ssl', 'tls', or emp
logger_error[] = screen
logger_exception[] = screen
+; if set to 1, only requests done in CLI mode (eg. the archive.sh cron run) will be logged
+; NOTE: log_only_when_debug_parameter will also be checked for
+log_only_when_cli = 0
+
+; if set to 1, only requests with "&debug" parameter will be logged
+; NOTE: log_only_when_cli will also be checked for
+log_only_when_debug_parameter = 0
+
; if configured to log in files, log files will be created in this path
; eg. if the value is tmp/logs files will be created in /path/to/piwik/tmp/logs/
logger_file_path = tmp/logs