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)