We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69efbf0 commit f001b9cCopy full SHA for f001b9c
src/murfey/instrument_server/__init__.py
@@ -58,7 +58,9 @@ def start_instrument_server():
58
# Construct URL for the HTTPS log handler
59
client_config = dict(read_config()["Murfey"])
60
murfey_server_url = client_config["server"].rstrip("/")
61
- logger_url = f"{murfey_server_url}{url_path_for('api.hub.router', 'forward_logs')}"
+ logger_url = (
62
+ f"{murfey_server_url}{url_path_for('api.logging.router', 'forward_logs')}"
63
+ )
64
65
# Forward DEBUG levels logs and above from Murfey to the backend
66
murfey_https_handler = HTTPSHandler(endpoint_url=logger_url)
0 commit comments