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,8 +54,8 @@ class clean (Command):
|
|||
if os.path.exists(self.build_temp):
|
||||
remove_tree(self.build_temp, dry_run=self.dry_run)
|
||||
else:
|
||||
log.warn("'%s' does not exist -- can't clean it",
|
||||
self.build_temp)
|
||||
log.debug("'%s' does not exist -- can't clean it",
|
||||
self.build_temp)
|
||||
|
||||
if self.all:
|
||||
# remove build directories
|
||||
|
|
Loading…
Reference in New Issue