Add additional logging to Rookeries.
This commit is contained in:
parent
d66f5aa017
commit
ed24779f7e
|
@ -2,6 +2,8 @@
|
||||||
Changelog
|
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.
|
* :support:`22` Break up Rookeries into separate webapp and api, to allow for server-side rendering.
|
||||||
* :feature:`6` Add CouchDB persistance of content.
|
* :feature:`6` Add CouchDB persistance of content.
|
||||||
* :support:`0` Simplify layout of Rookeries into something simpler to showcase the new focus of the application.
|
* :support:`0` Simplify layout of Rookeries into something simpler to showcase the new focus of the application.
|
||||||
|
|
|
@ -27,6 +27,7 @@ def serve_markdown_page(page=None):
|
||||||
|
|
||||||
# TODO: Remove hardcoding of landing url
|
# TODO: Remove hardcoding of landing url
|
||||||
page = "about" if page == "landing" else page
|
page = "about" if page == "landing" else page
|
||||||
|
logger.info('Retrieving page "%s"', page)
|
||||||
|
|
||||||
journal_entry = None
|
journal_entry = None
|
||||||
data_source = ds.JournalEntryDataStore(flask.current_app.config)
|
data_source = ds.JournalEntryDataStore(flask.current_app.config)
|
||||||
|
|
Loading…
Reference in New Issue