From 6aca4d1aee2eff334f06f6fb3c567a2dc261fd2d Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Sat, 14 Apr 2012 15:22:41 -0700 Subject: [PATCH] remove debug Change-Id: I7ced1f4d6376444b8c7491e038addaf9ef35f8c4 --- pkg/schema/schema_posix.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/schema/schema_posix.go b/pkg/schema/schema_posix.go index 49adf3e49..29a0a3128 100644 --- a/pkg/schema/schema_posix.go +++ b/pkg/schema/schema_posix.go @@ -31,7 +31,6 @@ func populateSchemaUnix(m map[string]interface{}, fi os.FileInfo) { // Include the ctime too, if it differs. sec, nsec := st.Ctim.Unix() - println("ctime", sec, nsec) ctime := time.Unix(sec, nsec) if sec != 0 && !ctime.Equal(fi.ModTime()) { m["unixCtime"] = RFC3339FromTime(ctime)