Browse code

Change httpd Keystone log level to default

Having Keystone's log level at debug caused a lot of uninteresting
Httpd-related log lines to be displayed which makes debugging more
difficult than it should be.

Rather than set the log level explicitly, Keystone will use the
Httpd server's setting, which defaults to warn.

Partial-Bug: #1359995
Change-Id: Ieef882944bafd98f7b27497a5276124b21c3e576

Brant Knudson authored on 2014/08/22 08:22:00
Showing 1 changed files
... ...
@@ -7,7 +7,6 @@ Listen %ADMINPORT%
7 7
     WSGIScriptAlias / %PUBLICWSGI%
8 8
     WSGIApplicationGroup %{GLOBAL}
9 9
     ErrorLog /var/log/%APACHE_NAME%/keystone.log
10
-    LogLevel debug
11 10
     CustomLog /var/log/%APACHE_NAME%/access.log combined
12 11
 </VirtualHost>
13 12
 
... ...
@@ -17,7 +16,6 @@ Listen %ADMINPORT%
17 17
     WSGIScriptAlias / %ADMINWSGI%
18 18
     WSGIApplicationGroup %{GLOBAL}
19 19
     ErrorLog /var/log/%APACHE_NAME%/keystone.log
20
-    LogLevel debug
21 20
     CustomLog /var/log/%APACHE_NAME%/access.log combined
22 21
 </VirtualHost>
23 22