diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-11-18 10:39:53 +0100 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-11-18 11:06:39 +0100 |
commit | db80217f161ac24023e50bfb8c5628e436df6584 (patch) | |
tree | 984d5f901e8544737e1f3462c921905932aafd8d /sonar-application | |
parent | 1ab47e622a5f138b9d8e060457027a8d2cc30d08 (diff) | |
download | sonarqube-db80217f161ac24023e50bfb8c5628e436df6584.tar.gz sonarqube-db80217f161ac24023e50bfb8c5628e436df6584.zip |
SONAR-8335 support global log level in ES JVM as we do for other JVM
Diffstat (limited to 'sonar-application')
-rw-r--r-- | sonar-application/src/main/assembly/conf/sonar.properties | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sonar-application/src/main/assembly/conf/sonar.properties b/sonar-application/src/main/assembly/conf/sonar.properties index dd4d6d7623a..9f08e54d864 100644 --- a/sonar-application/src/main/assembly/conf/sonar.properties +++ b/sonar-application/src/main/assembly/conf/sonar.properties @@ -250,7 +250,7 @@ # Some logs, however, will follow the convention to provide data in payload in the format " | key=value" # Especially, log of profiled pieces of code will end with " | time=XXXXms". -# Global level of logs (applies to App, Web and CE processes). +# Global level of logs (applies to all 4 processes). # Supported values are INFO (default), DEBUG and TRACE #sonar.log.level=INFO @@ -279,8 +279,8 @@ #sonar.log.maxFiles=7 # Access log is the list of all the HTTP requests received by server. If enabled, it is stored -# in the file {sonar.path.logs}/access.log. This file follows the same rolling policy as for -# sonar.log (see sonar.log.rollingPolicy and sonar.log.maxFiles). +# in the file {sonar.path.logs}/access.log. This file follows the same rolling policy as other log file +# (see sonar.log.rollingPolicy and sonar.log.maxFiles). #sonar.web.accessLogs.enable=true # Format of access log. It is ignored if sonar.web.accessLogs.enable=false. Possible values are: |