change default loglevel to be INFO instead of DEBUG.

This commit is contained in:
Klavs Klavsen
2013-10-15 09:11:26 +02:00
parent b5fde343ed
commit 89117ce844

View File

@@ -11,7 +11,7 @@ if not me in sys.path:
logfilename = os.path.join('/tmp/', 'puppetboard_passenger_wsgi.log')
# configure the logging
logging.basicConfig(filename=logfilename, level=logging.DEBUG)
logging.basicConfig(filename=logfilename, level=logging.INFO)
try:
from puppetboard.app import app as application