From: Mike Bayer Date: Mon, 25 May 2015 18:47:57 +0000 (-0400) Subject: - turn some dials to try to get more log output X-Git-Tag: rel_1_0_5~14 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=88f547900276ff969ca25d24287fd5f96eeec49c;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - turn some dials to try to get more log output --- diff --git a/doc/build/Makefile b/doc/build/Makefile index 4de8f98b62..cd39b72888 100644 --- a/doc/build/Makefile +++ b/doc/build/Makefile @@ -2,7 +2,7 @@ # # You can set these variables from the command line. -SPHINXOPTS = +SPHINXOPTS = -v SPHINXBUILD = sphinx-build PAPER = BUILDDIR = output diff --git a/doc/build/conf.py b/doc/build/conf.py index 8530c1ef8a..24e235a321 100644 --- a/doc/build/conf.py +++ b/doc/build/conf.py @@ -19,7 +19,7 @@ def force_install_reqs(): import logging log = logging.getLogger("pip") - handler = logging.StreamHandler(sys.stdout) + handler = logging.StreamHandler(sys.stderr) handler.setFormatter(logging.Formatter("[pip] %(message)s")) log.addHandler(handler) log.setLevel(logging.INFO)