From 8c6c389ec3841862848d56679a14637b5549ce4d Mon Sep 17 00:00:00 2001 From: Solomon Hykes Date: Tue, 15 Oct 2013 23:12:27 +0000 Subject: [PATCH] Remove error messages which are not actually errors Upstream-commit: cbc49d7d76dfc9e259d5227a0077a83e5faf1202 Component: engine --- components/engine/buildfile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/buildfile.go b/components/engine/buildfile.go index db1fdf9e72..64f04b3a3a 100644 --- a/components/engine/buildfile.go +++ b/components/engine/buildfile.go @@ -296,7 +296,7 @@ func (b *buildFile) addContext(container *Container, orig, dest string) error { } // First try to unpack the source as an archive } else if err := UntarPath(origPath, destPath); err != nil { - utils.Errorf("Couldn't untar %s to %s: %s", origPath, destPath, err) + utils.Debugf("Couldn't untar %s to %s: %s", origPath, destPath, err) // If that fails, just copy it as a regular file if err := os.MkdirAll(path.Dir(destPath), 0755); err != nil { return err