My docs builds are suddenly full of messages like so:

  [openstackdocstheme] Last updated for ??? is 2018-02-05 15:15:34

We should log when things go wrong - not when they're working as
expected. Drop this down to 'debug' level, hence hiding it except where
necessary.

Change-Id: I246cf11b851522722ee6a385b09fafd5363d244a
Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
This commit is contained in:
Stephen Finucane 2019-02-22 14:45:04 +00:00
parent 5dd66b6dd6
commit a9710dc5de
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ def _get_last_updated(app, pagename):
for filename in candidates:
last_updated = _get_last_updated_file(filename)
if last_updated:
LOG.info(
LOG.debug(
'[openstackdocstheme] Last updated for %s is %s',
pagename, last_updated)
return last_updated