Skip to content

Commit bed52e5

Browse files
Change HTTP request logging to info level for visibility
1 parent 194a886 commit bed52e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/protocol/util/http_request.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ HTTPResponse request(const std::string& host, const std::string& port, const std
1616

1717
HTTPResponse res;
1818

19-
// Debug log the URL being requested
20-
CASPAR_LOG(debug) << "HTTP request: GET " << path;
19+
// Log the URL being requested for debugging
20+
CASPAR_LOG(info) << "HTTP GET: " << path;
2121

2222
asio::io_context io_context;
2323

0 commit comments

Comments
 (0)