From 795578ef9596c3cd02facb48aa9b4b6b73b2ee26 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 27 Feb 2010 16:41:54 +0100 Subject: update: log start/finish of the update thread --- src/update.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/update.c b/src/update.c index ea28e6052..83436612f 100644 --- a/src/update.c +++ b/src/update.c @@ -60,12 +60,22 @@ static void * update_task(void *_path) { const char *path = _path; + if (path != NULL && *path != 0) + g_debug("starting: %s", path); + else + g_debug("starting"); + modified = update_walk(path, discard); - g_free(_path); if (modified || !db_exists()) db_save(); + if (path != NULL && *path != 0) + g_debug("finished: %s", path); + else + g_debug("finished"); + g_free(_path); + progress = UPDATE_PROGRESS_DONE; event_pipe_emit(PIPE_EVENT_UPDATE); return NULL; -- cgit v1.2.3