Skip to content

Commit

Permalink
fix the dumb issue with websocketpp logging to a non existant handler
Browse files Browse the repository at this point in the history
  • Loading branch information
FireMario211 committed Aug 10, 2024
1 parent 8a56b8d commit 43fa5a6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ void start_socket_func() {
sock.set_open_listener(&ConnectionHandler::onSuccess);
sock.set_close_listener(&ConnectionHandler::onClose);
sock.set_fail_listener(&ConnectionHandler::onFail);
sock.set_logs_quiet();
sock.connect("http://gdutils.clarifygdps.com:13573");
auto start_time = std::chrono::steady_clock::now();
while (!connect_finish) {
Expand Down

1 comment on commit 43fa5a6

@FireMario211
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also should fix issue #36 !

Please sign in to comment.