diff --git a/CHANGELOG.md b/CHANGELOG.md index 39ae2fdb..6c6e1022 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ ### Upcoming #### Highlights - - New /pioreactor/ page in the UI for a detailed view of an individual Pioreactor, including a realtime visualization of the Pioreactor! + - New /pioreactor/`worker-name` page in the UI for a detailed view of an individual Pioreactor, including a realtime visualization of the Pioreactor! #### Enhancements - UI now supports external MQTT broker. This configuration lives in the same place as the exiting MQTT settings: in the config.ini, under `[mqtt]`. diff --git a/pioreactor/logging.py b/pioreactor/logging.py index 9ffb834d..0114248d 100644 --- a/pioreactor/logging.py +++ b/pioreactor/logging.py @@ -217,7 +217,7 @@ def create_logger( assert pub_client is not None # create MQTT handlers for logs table - topic = f"pioreactor/{unit}/{experiment}/logs/{source}" + topic = f"pioreactor/{unit}/{experiment}/logs/{source}" # NOTE: we append the log-level, ex: /debug mqtt_to_db_handler = MQTTHandler(topic, pub_client) mqtt_to_db_handler.setLevel(logging.DEBUG) mqtt_to_db_handler.setFormatter(CustomisedJSONFormatter())