Somehow broke startup
[gc-dialer] / src / dialcentral.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 """
5 Copyright (C) 2007 Christoph Würstle
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License version 2 as
8 published by the Free Software Foundation.
9 """
10
11
12 import os
13 import sys
14 import logging
15
16
17 _moduleLogger = logging.getLogger(__name__)
18 sys.path.append("/opt/dialcentral/lib")
19
20
21 import constants
22 import dialcentral_qt
23
24
25 if __name__ == "__main__":
26         try:
27                 os.makedirs(constants._data_path_)
28         except OSError, e:
29                 if e.errno != 17:
30                         raise
31
32         logFormat = '(%(relativeCreated)5d) %(levelname)-5s %(threadName)s.%(name)s.%(funcName)s: %(message)s'
33         logging.basicConfig(level=logging.DEBUG, filename=constants._user_logpath_, format=logFormat)
34         _moduleLogger.info("%s %s-%s" % (constants.__app_name__, constants.__version__, constants.__build__))
35         _moduleLogger.info("OS: %s" % (os.uname()[0], ))
36         _moduleLogger.info("Kernel: %s (%s) for %s" % os.uname()[2:])
37         _moduleLogger.info("Hostname: %s" % os.uname()[1])
38
39         dialcentral_qt.run()