diff --git a/fmtr/tools/interface_tools.py b/fmtr/tools/interface_tools.py index ab85053..aca8940 100644 --- a/fmtr/tools/interface_tools.py +++ b/fmtr/tools/interface_tools.py @@ -87,7 +87,7 @@ def get_state(cls): Initialise this Interface and keep cached """ - msg = f'Initialising State: for App {cls.NAME}...' + msg = f'Initialising State "{cls.NAME}"...' logger.info(msg) self = cls() return self @@ -101,6 +101,7 @@ def launch(cls): """ if cls.is_streamlit(): self = cls.get_state() + logger.debug(f'Rendering Interface "{self.NAME}" with state: {st.session_state}...') self.set_title() self.render() else: diff --git a/fmtr/tools/version b/fmtr/tools/version index ece61c6..f9cbc01 100644 --- a/fmtr/tools/version +++ b/fmtr/tools/version @@ -1 +1 @@ -1.0.6 \ No newline at end of file +1.0.7 \ No newline at end of file