import logging_service, os # This main module is provided so the application can be conveniently bundled for deployment def main(): print "Unified Logging Service starting from ",os.getcwd() logging_service.startup() if __name__ == '__main__': main()