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:
Jeremy Hylton 2002-06-06 14:54:56 +00:00
parent 065c1a25d1
commit a683233d87
1 changed files with 2 additions and 2 deletions

View File

@ -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