Skip to content

Commit

Permalink
ready for release
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed May 31, 2024
1 parent f1b4dc8 commit 0610d32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
### Upcoming

#### Highlights
- New /pioreactor/<name> 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]`.
Expand Down
2 changes: 1 addition & 1 deletion pioreactor/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down

0 comments on commit 0610d32

Please sign in to comment.