diff --git a/api/docs/changelog.rst b/api/docs/changelog.rst index 54dd1ce..0714687 100644 --- a/api/docs/changelog.rst +++ b/api/docs/changelog.rst @@ -2,6 +2,8 @@ Changelog ========= +* :support:`25` Improve logging in Rookeries API. +* :support:`22` Dockerize Rookeries API and webapp to allow for easier development and deployment. * :support:`22` Break up Rookeries into separate webapp and api, to allow for server-side rendering. * :feature:`6` Add CouchDB persistance of content. * :support:`0` Simplify layout of Rookeries into something simpler to showcase the new focus of the application. diff --git a/api/rookeries/journal/views.py b/api/rookeries/journal/views.py index e393335..3a48f60 100644 --- a/api/rookeries/journal/views.py +++ b/api/rookeries/journal/views.py @@ -27,6 +27,7 @@ def serve_markdown_page(page=None): # TODO: Remove hardcoding of landing url page = "about" if page == "landing" else page + logger.info('Retrieving page "%s"', page) journal_entry = None data_source = ds.JournalEntryDataStore(flask.current_app.config)