Commit 6b97787e authored by Jeremy Hylton's avatar Jeremy Hylton

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.
parent 1d89b237
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment