move display_page path resolution logging to DEBUG

This commit is contained in:
Brian S. Stephan 2020-03-15 18:43:41 -05:00
parent ed0dab14f3
commit 5ce44ba31c
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ md = markdown.Markdown(extensions=['meta'])
def display_page(path):
"""Get the file contents of the requested path and render the file."""
resolved_path = page_file_resolver(path)
logger.info("received request for path '%s', resolved to '%s'", path, resolved_path)
logger.debug("received request for path '%s', resolved to '%s'", path, resolved_path)
try:
with app.open_instance_resource(resolved_path, 'r') as entry_file:
logger.debug("file '%s' found", resolved_path)