From: Andre Noll Date: Tue, 23 Aug 2016 11:26:25 +0000 (+0200) Subject: Improve log message for snapshot creation. X-Git-Tag: v0.1.7~5 X-Git-Url: http://git.tuebingen.mpg.de/dss.git/log?p=dss.git;a=commitdiff_plain;h=ee132d4f3e81eaaaeee94ceaf9f960c50bc7d448 Improve log message for snapshot creation. The log message that prints the name of the snapshot which is going to be recycled is kind of interesting and deserves the "notice" severity. The "creating new snapshot" message is a bit misleading in case we decided to recycle a snapshot, so drop the word "new". --- diff --git a/dss.c b/dss.c index 03ddaf8..4c068c6 100644 --- a/dss.c +++ b/dss.c @@ -1157,11 +1157,11 @@ static int rename_resume_snap(int64_t creation_time) s = find_orphaned_snapshot(&sl); out: if (s) { - DSS_INFO_LOG(("reusing %s snapshot %s\n", why, s->name)); + DSS_NOTICE_LOG(("recycling %s snapshot %s\n", why, s->name)); ret = dss_rename(s->name, new_name); } if (ret >= 0) - DSS_NOTICE_LOG(("creating new snapshot %s\n", new_name)); + DSS_NOTICE_LOG(("creating %s\n", new_name)); free(new_name); free_snapshot_list(&sl); return ret;