From c1176a1bdb2f614195ff35bac2e00ccbc3d29049 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 12 Jan 2013 12:22:13 +0100 Subject: [PATCH] Write verbose/debug messages to status fd, not warning fd. --- sphinx/application.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinx/application.py b/sphinx/application.py index 7e07f6b91..d49a0fa26 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