From d9d92cb75d40524df388d6e94497ebcf1c15d107 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Thu, 12 Feb 2015 10:24:29 -0800 Subject: [PATCH] Print names of files deleted by cleanup phase Change-Id: Ia9c5408b1b159843dbc57e2e480ca2972598186d --- bootstrap/cleanup.go | 1 + 1 file changed, 1 insertion(+) diff --git a/bootstrap/cleanup.go b/bootstrap/cleanup.go index 7029111..e876696 100644 --- a/bootstrap/cleanup.go +++ b/bootstrap/cleanup.go @@ -126,6 +126,7 @@ func removeFileAndEmptyDirs(path string) error { } return err } + fmt.Printf("removed old ninja-created file %s because it has no rule to generate it\n", path) path, err = filepath.Abs(path) if err != nil {