From: Andre Noll Date: Sat, 11 Nov 2017 05:24:47 +0000 (+0100) Subject: find_orphaned_snapshot(): Improve log message. X-Git-Tag: v1.0.0~12 X-Git-Url: http://git.tuebingen.mpg.de/dss.git/log?p=dss.git;a=commitdiff_plain;h=d5c05d096cdafcde85ad5400c480010efc212445 find_orphaned_snapshot(): Improve log message. It is kind of obvious that find_orphaned_snapshot() looks for, well, orphaned snapshots. The new message at least gives the user a vague idea what this means. --- diff --git a/dss.c b/dss.c index 16ce826..22a350a 100644 --- a/dss.c +++ b/dss.c @@ -516,7 +516,7 @@ static struct snapshot *find_orphaned_snapshot(struct snapshot_list *sl) struct snapshot *s; int i; - DSS_DEBUG_LOG(("looking for orphaned snapshots\n")); + DSS_DEBUG_LOG(("looking for old incomplete snapshots\n")); FOR_EACH_SNAPSHOT(s, i, sl) { if (snapshot_is_being_created(s)) continue;