Commit 7924da62a132611ab8d339d543507760bcffc9e1
1 parent
01e6b78e
Readd WinHttpHandler: to error output in WinHttpHandler.cpp
Showing
1 changed file
with
1 additions
and
1 deletions
hueplusplus/WinHttpHandler.cpp
| ... | ... | @@ -33,7 +33,7 @@ WinHttpHandler::WinHttpHandler() |
| 33 | 33 | int return_code = WSAStartup(MAKEWORD(2, 2), &wsaData); |
| 34 | 34 | if (return_code != 0) |
| 35 | 35 | { |
| 36 | - std::cerr << "Failed to open socket: " << return_code << std::endl; | |
| 36 | + std::cerr << "WinHttpHandler: Failed to open socket: " << return_code << std::endl; | |
| 37 | 37 | throw(std::runtime_error("WinHttpHandler: Failed to open socket")); |
| 38 | 38 | } |
| 39 | 39 | } | ... | ... |