Skip to content

Commit

Permalink
Add file extension for log (#1467)
Browse files Browse the repository at this point in the history
Add file extension
  • Loading branch information
MelHarbour authored Jul 7, 2024
1 parent 9fff3d5 commit f9452bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion music_assistant/server/controllers/webserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ async def setup(self, config: CoreConfig) -> None:
# add info
routes.append(("GET", "/info", self._handle_server_info))
# add logging
routes.append(("GET", "/log", self._handle_application_log))
routes.append(("GET", "/music-assistant.log", self._handle_application_log))
# add websocket api
routes.append(("GET", "/ws", self._handle_ws_client))
# also host the image proxy on the webserver
Expand Down

0 comments on commit f9452bf

Please sign in to comment.