diff --git a/example/hello_world_over_tcp.cpp b/example/hello_world_over_tcp.cpp index 891a643..0c3808d 100644 --- a/example/hello_world_over_tcp.cpp +++ b/example/hello_world_over_tcp.cpp @@ -20,10 +20,7 @@ int main() { boost::asio::io_context ioc; // Construct the Client with ``__TCP_SOCKET__`` as the underlying stream. - //async_mqtt5::mqtt_client client(ioc); - async_mqtt5::mqtt_client client( - ioc, {} /* tls_context */, async_mqtt5::logger(async_mqtt5::log_level::debug) - ); + async_mqtt5::mqtt_client client(ioc); //] //[configure_tcp_client