summaryrefslogtreecommitdiffstats
path: root/src/uscxml/server
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2017-04-27 07:41:43 (GMT)
committerStefan Radomski <github@mintwerk.de>2017-04-27 07:42:40 (GMT)
commit8015ce2701862e6977fe12cde839a35ddb4c32e5 (patch)
treeb9e09526e0bb88e2b97d4998387e0322a497185c /src/uscxml/server
parenta925b941c640289ffd967cab457ab804de69399a (diff)
downloaduscxml-8015ce2701862e6977fe12cde839a35ddb4c32e5.zip
uscxml-8015ce2701862e6977fe12cde839a35ddb4c32e5.tar.gz
uscxml-8015ce2701862e6977fe12cde839a35ddb4c32e5.tar.bz2
Fixed issue113 for real
Diffstat (limited to 'src/uscxml/server')
-rw-r--r--src/uscxml/server/HTTPServer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uscxml/server/HTTPServer.cpp b/src/uscxml/server/HTTPServer.cpp
index e1ac6bc..5c56a8d 100644
--- a/src/uscxml/server/HTTPServer.cpp
+++ b/src/uscxml/server/HTTPServer.cpp
@@ -92,9 +92,9 @@ HTTPServer::HTTPServer(unsigned short port, unsigned short wsPort, SSLConfig* ss
if (_port > 0) {
_httpHandle = evhttp_bind_socket_with_handle(_http, NULL, _port);
if (_httpHandle) {
- LOGD(USCXML_INFO) << "HTTP server listening on tcp/" << _port << std::endl;;
+ LOGD(USCXML_INFO) << "HTTP server listening on tcp/" << _port << std::endl;;
} else {
- LOGD(USCXML_ERROR) << "HTTP server cannot bind to tcp/" << _port << std::endl;
+ LOGD(USCXML_ERROR) << "HTTP server cannot bind to tcp/" << _port << std::endl;
}
}