From 3dd77cdd0bd65049cf7b25483bb4ddf0f8865e01 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Tue, 09 Oct 2007 20:38:57 +0000 Subject: Use incremental numbers to avoid double logs, nicer than timestamps. --- (limited to 'sugar/activity/activityfactory.py') diff --git a/sugar/activity/activityfactory.py b/sugar/activity/activityfactory.py index d5bdaf7..c1cefb5 100644 --- a/sugar/activity/activityfactory.py +++ b/sugar/activity/activityfactory.py @@ -18,7 +18,6 @@ import logging import subprocess -import time import dbus import gobject @@ -101,9 +100,10 @@ def get_command(activity, activity_id=None, object_id=None, uri=None): return command def open_log_file(activity, activity_id): - timestamp = str(int(time.time())) - name = '%s-%s.log' % (activity.bundle_id, timestamp) - return open(env.get_logs_path(name), 'w') + for i in range(1, 100): + path = env.get_logs_path('%s-%s.log' % (activity.bundle_id, i)) + if not os.path.exists(path): + return open(path, 'w') class ActivityCreationHandler(gobject.GObject): """Sugar-side activity creation interface -- cgit v0.9.1