aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-07-02 11:52:10 -0400
committerJack Lloyd <[email protected]>2018-07-02 11:52:10 -0400
commita14ab32d50597c4e403278b2ca9473acd2de6cb1 (patch)
treedfbc1350d732be7e6945c69056823aebf3b735a9 /src/scripts
parentd40c9bacdba37cecb0ebca78bcef31a88979bd48 (diff)
Avoid having Doxygen error out except in maintainer mode builds
Increases likelyhood that it will fail to build for an end user which is not helpful for anyone.
Diffstat (limited to 'src/scripts')
-rwxr-xr-xsrc/scripts/build_docs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scripts/build_docs.py b/src/scripts/build_docs.py
index 9b0e37960..92542dd2d 100755
--- a/src/scripts/build_docs.py
+++ b/src/scripts/build_docs.py
@@ -78,10 +78,10 @@ def run_and_check(cmd_line, cwd=None):
logging.error("Executing %s failed (%s)", ' '.join(cmd_line), e)
if stdout:
- logging.debug(stdout.decode())
+ logging.info(stdout.decode())
if stderr:
- logging.debug(stderr.decode())
+ logging.info(stderr.decode())
if proc.returncode != 0:
logging.info(stdout.decode())