Skip to content

Commit 0610d32

Browse files
ready for release
1 parent f1b4dc8 commit 0610d32

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
### Upcoming
22

33
#### Highlights
4-
- New /pioreactor/<name> page in the UI for a detailed view of an individual Pioreactor, including a realtime visualization of the Pioreactor!
4+
- New /pioreactor/`worker-name` page in the UI for a detailed view of an individual Pioreactor, including a realtime visualization of the Pioreactor!
55

66
#### Enhancements
77
- UI now supports external MQTT broker. This configuration lives in the same place as the exiting MQTT settings: in the config.ini, under `[mqtt]`.

pioreactor/logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def create_logger(
217217
assert pub_client is not None
218218

219219
# create MQTT handlers for logs table
220-
topic = f"pioreactor/{unit}/{experiment}/logs/{source}"
220+
topic = f"pioreactor/{unit}/{experiment}/logs/{source}" # NOTE: we append the log-level, ex: /debug
221221
mqtt_to_db_handler = MQTTHandler(topic, pub_client)
222222
mqtt_to_db_handler.setLevel(logging.DEBUG)
223223
mqtt_to_db_handler.setFormatter(CustomisedJSONFormatter())

0 commit comments

Comments
 (0)