diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-11-15 11:52:03 +0100 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-11-16 18:27:52 +0100 |
commit | de02cc4e965bbfba00e96b97d4b04700eea298c0 (patch) | |
tree | 9fd0e829515cc898b450e273046a5373cc8b11d8 /sonar-application/src/main/assembly/conf | |
parent | 0518e8253c82e39e2d7c7d8aa82873edc32d442d (diff) | |
download | sonarqube-de02cc4e965bbfba00e96b97d4b04700eea298c0.tar.gz sonarqube-de02cc4e965bbfba00e96b97d4b04700eea298c0.zip |
SONAR-8335 document new properties in sonar.properties
Diffstat (limited to 'sonar-application/src/main/assembly/conf')
-rw-r--r-- | sonar-application/src/main/assembly/conf/sonar.properties | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sonar-application/src/main/assembly/conf/sonar.properties b/sonar-application/src/main/assembly/conf/sonar.properties index 5d8eb0009ed..8a0cdcb4686 100644 --- a/sonar-application/src/main/assembly/conf/sonar.properties +++ b/sonar-application/src/main/assembly/conf/sonar.properties @@ -217,9 +217,17 @@ #-------------------------------------------------------------------------------------------------- # LOGGING -# Level of logs. Supported values are INFO(default), DEBUG and TRACE (DEBUG + SQL + ES requests) +# Global level of logs (applies to App, Web and CE processes). +# Supported values are INFO (default), DEBUG and TRACE #sonar.log.level=INFO +# Level of logs of each process can be controlled individually with their respective properties. +# Supported values are INFO (default), DEBUG and TRACE +#sonar.log.level.app=INFO +#sonar.log.level.web=INFO +#sonar.log.level.ce=INFO +#sonar.log.level.es=INFO + # Path to log files. Can be absolute or relative to installation directory. # Default is <installation home>/logs #sonar.path.logs=logs |