From: Alan Knowles Date: Thu, 24 May 2018 09:22:28 +0000 (+0800) Subject: src/strip.vala X-Git-Url: http://git.roojs.org/?p=app.mailtrimmer;a=commitdiff_plain;h=34b48b68364a5a1d82a7ad49007802353960481d src/strip.vala --- diff --git a/src/strip.vala b/src/strip.vala index 3a19ff5..24b26c2 100644 --- a/src/strip.vala +++ b/src/strip.vala @@ -875,7 +875,7 @@ public class Strip : GLib.Object { var oldest = new DateTime.now_local(); oldest = oldest.add_months(-1 * StripApplication.opt_age_oldest); - GLib.debug("Checking directory %s is older than min: %d/%d/%d", subpath, oldest.get_year() , oldest.get_month(), oldest.get_day_of_month() ); + //GLib.debug("Checking directory %s is older than min: %d/%d/%d", subpath, oldest.get_year() , oldest.get_month(), oldest.get_day_of_month() ); if (year < oldest.get_year()) { GLib.debug("Skip directory %s is older than min year: %d", subpath, oldest.get_year()); @@ -893,7 +893,7 @@ public class Strip : GLib.Object { var newest = new DateTime.now_local(); newest = newest.add_months(-1 * StripApplication.opt_age_newest); - GLib.debug("Checking directory %s is newer than max: %d/%d/%d", subpath, newest.get_year() , newest.get_month(), newest.get_day_of_month() ); + //GLib.debug("Checking directory %s is newer than max: %d/%d/%d", subpath, newest.get_year() , newest.get_month(), newest.get_day_of_month() ); if (year > newest.get_year()) { GLib.debug("Skip directory %s is newer than max year: %d", subpath, newest.get_year());