Add more logging to the office backend initialization code

This commit is contained in:
Roberto Rosario
2015-01-28 17:26:07 -04:00
parent 69cc1277cb
commit 766e7be49f

View File

@@ -1,4 +1,6 @@
from __future__ import absolute_import
from __future__ import unicode_literals
import logging
from common.utils import load_backend
@@ -6,9 +8,16 @@ from .exceptions import OfficeBackendError
from .office_converter import OfficeConverter
from .settings import GRAPHICS_BACKEND
logger = logging.getLogger(__name__)
logger.debug('initializing office backend')
try:
office_converter = OfficeConverter()
except OfficeBackendError:
except OfficeBackendError as exception:
logger.error('error initializing office backend; %s', exception)
office_converter = None
else:
logger.debug('office_backend initialized')
backend = load_backend(GRAPHICS_BACKEND)()