Github user bgaff commented on a diff in the pull request: https://github.com/apache/trafficserver/pull/624#discussion_r62779253 --- Diff: lib/atscppapi/examples/websocket/WebSocket.cc --- @@ -0,0 +1,311 @@ +#include "WebSocket.hh" + +#include <iostream> +#include "ts/ink_base64.h" +#include "openssl/evp.h" +#include <netinet/in.h> +#include <arpa/inet.h> + +// DISCLAIMER: this is intended for demonstration purposes only and +// does not pretend to implement a complete (or useful) server. + +using namespace atscppapi; + +#define SAY(a) std::cout << a << std::endl; --- End diff -- Please see the stuff we have available in atscppapi/Logger.h, such as TSDebug or creating a logger class.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---