Raise log level at the first load attempt. If there is a
fundamental problem with the environment, a Lookup error
is not helpful in troubleshooting the problem further.
Fix bug
1210236
Change-Id: I55aa11a0e5a37dbef3f0c1b55aa4c9c11bbf55d9
service = cls.create()
service.start()
except RuntimeError:
- LOG.warn(_('Attempting fallback to old Quantum api-paste config'))
+ LOG.exception(_('Error occurred: trying old api-paste.ini.'))
service = cls.create('quantum')
service.start()
except Exception:
- LOG.exception(_('In serve_wsgi()'))
+ LOG.exception(_('Unrecoverable error: please check log for details.'))
raise
return service