summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-01-12 12:22:13 +0100
committerGeorg Brandl <georg@python.org>2013-01-12 12:22:13 +0100
commitb714bb5267615db6f971b97d29e5df49c4d46332 (patch)
tree1251ee7cf021bf7e433d2df4c2c62d3687cc6919
parentde443fbb66776c53f7c3062d46721ac9e3c7d325 (diff)
downloadsphinx-b714bb5267615db6f971b97d29e5df49c4d46332.tar.gz
Write verbose/debug messages to status fd, not warning fd.
-rw-r--r--sphinx/application.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/application.py b/sphinx/application.py
index 7e07f6b9..d49a0fa2 100644
--- a/sphinx/application.py
+++ b/sphinx/application.py
@@ -248,14 +248,14 @@ class Sphinx(object):
return
if args or kwargs:
message = message % (args or kwargs)
- self._log(message, self._warning)
+ self._log(message, self._status)
def debug(self, message, *args, **kwargs):
if self.verbosity < 2:
return
if args or kwargs:
message = message % (args or kwargs)
- self._log(message, self._warning)
+ self._log(message, self._status)
# general extensibility interface