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:
authormattab <matthieu.aubry@gmail.com>2013-11-21 02:47:53 +0400
committermattab <matthieu.aubry@gmail.com>2013-11-21 02:47:53 +0400
commit6328313f07754b206bc57c5ec37a28c422c83679 (patch)
treeb0c7530df814aa0110db5c831a7e8989aec38a63 /config
parentb53deca8207d0ac94ccbe4715f3e1afadca98bd1 (diff)
Moving [log] section higher so it appears higher in config.ini.php since i use it often
Diffstat (limited to 'config')
-rw-r--r--config/global.ini.php41
1 files changed, 21 insertions, 20 deletions
diff --git a/config/global.ini.php b/config/global.ini.php
index 50c8097d46..07f0b68dd8 100644
--- a/config/global.ini.php
+++ b/config/global.ini.php
@@ -37,6 +37,27 @@ adapter = PDO_MYSQL
login =
password =
+[log]
+; possible values for log: screen, database, file
+log_writers[] = screen
+
+; log level, everything logged w/ this level or one of greater severity
+; will be logged. everything else will be ignored. possible values are:
+; NONE, ERROR, WARN, INFO, DEBUG, VERBOSE
+log_level = WARN
+
+; if set to 1, only requests done in CLI mode (eg. the archive.php 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 a file, log entries will be made to this file
+logger_file_path = tmp/logs/piwik.log
+
+
[Debug]
; if set to 1, the archiving process will always be triggered, even if the archive has already been computed
; this is useful when making changes to the archiving code so we can force the archiving process
@@ -474,26 +495,6 @@ port = ; Proxy port: the port that the proxy server listens to. There is no stan
username = ; Proxy username: optional; if specified, password is mandatory
password = ; Proxy password: optional; if specified, username is mandatory
-[log]
-; possible values for log: screen, database, file
-log_writers[] = screen
-
-; log level, everything logged w/ this level or one of greater severity
-; will be logged. everything else will be ignored. possible values are:
-; NONE, ERROR, WARN, INFO, DEBUG, VERBOSE
-log_level = WARN
-
-; if set to 1, only requests done in CLI mode (eg. the archive.php 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 a file, log entries will be made to this file
-logger_file_path = tmp/logs/piwik.log
-
[Plugins]
Plugins[] = CorePluginsAdmin
Plugins[] = CoreAdminHome