Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorSascha Silbe <sascha-pgp@silbe.org>2011-04-10 15:13:04 (GMT)
committer Sascha Silbe <sascha-pgp@silbe.org>2011-04-10 15:13:04 (GMT)
commitaaa29df9daf56c7fc2448ae4bb55619fdaee4fd4 (patch)
tree0c0a974d43ab88eb3747491cfbad7fac58f1bdab /bin
parentf4d217831054b8fb63181697efce07c9147c8a25 (diff)
first working implementation
Diffstat (limited to 'bin')
-rwxr-xr-xbin/gdatastore-service (renamed from bin/datastore-service)4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/datastore-service b/bin/gdatastore-service
index c18d141..d065f3a 100755
--- a/bin/datastore-service
+++ b/bin/gdatastore-service
@@ -48,14 +48,14 @@ def main():
if not os.path.exists(LOG_DIR):
os.makedirs(LOG_DIR)
- logging.basicConfig(level=logging.WARN,
+ logging.basicConfig(level=logging.DEBUG,
format='%(asctime)-15s %(name)s %(levelname)s: %(message)s',
filename='%s/%d.log' % (LOG_DIR, time.time()))
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
bus = dbus.SessionBus()
internal_api = datastore.InternalApi(BASE_DIR)
- dbus_api_sugar_v1 = datastore.DBusApiSugarV1(internal_api)
+ dbus_api_sugar_v2 = datastore.DBusApiSugarV2(internal_api)
mainloop = gobject.MainLoop()
bus.set_exit_on_disconnect(False)