[IMP] startup script: added little reminder when the `web` module can not be imported.

bzr revid: vmt@openerp.com-20111007073330-t0mh6x7ohv82i1g6
This commit is contained in:
Vo Minh Thu 2011-10-07 09:33:30 +02:00
parent 28b0daeaff
commit 9f11dfe53c
1 changed files with 6 additions and 1 deletions

View File

@ -247,7 +247,12 @@ if __name__ == "__main__":
if info['post_load']: if info['post_load']:
getattr(sys.modules[m], info['post_load'])() getattr(sys.modules[m], info['post_load'])()
except Exception: except Exception:
logging.exception('Failed to load server-wide module `%s`', m) msg = ''
if m == 'web':
msg = """
The `web` module is provided by the addons found in the `openerp-web` project.
Maybe you forgot to add those addons in your addons_path configuration."""
logging.exception('Failed to load server-wide module `%s`.%s', m, msg)
setup_pid_file() setup_pid_file()
logger = logging.getLogger('server') logger = logging.getLogger('server')