Change warning to debug level; it's a very minor issue.
The specific warning is that clean didn't find a directory that should be removed if it exists.
This commit is contained in:
parent
065c1a25d1
commit
a683233d87
|
@ -54,7 +54,7 @@ class clean (Command):
|
||||||
if os.path.exists(self.build_temp):
|
if os.path.exists(self.build_temp):
|
||||||
remove_tree(self.build_temp, dry_run=self.dry_run)
|
remove_tree(self.build_temp, dry_run=self.dry_run)
|
||||||
else:
|
else:
|
||||||
log.warn("'%s' does not exist -- can't clean it",
|
log.debug("'%s' does not exist -- can't clean it",
|
||||||
self.build_temp)
|
self.build_temp)
|
||||||
|
|
||||||
if self.all:
|
if self.all:
|
||||||
|
|
Loading…
Reference in New Issue