sugar-toolkit-gtk3/shell/sugar-presence-service
Marco Pesenti Gritti 51c08af67c Add back the ip check, ipv6 needs to be disabled in the avahi daemon
config for this to work though
2006-07-26 16:33:44 +02:00

14 lines
298 B
Python
Executable File

#!/usr/bin/python
import logging
import sugar.env
from PresenceService import PresenceService
# FIXME this looks like duplicated
level = sugar.env.get_logging_level()
if level == 'debug':
logging.basicConfig(level=logging.DEBUG,
format='%(levelname)s %(message)s')
PresenceService.main()