summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2017-07-04 14:50:57 -0400
committer arbee <rb6502@users.noreply.github.com>2017-07-04 14:50:57 -0400
commit3ac9c56e65ea401287fb298d1c89698381b11454 (patch)
tree374f75554d55f09f153f9fe5cd2126a4660c3c09
parent8a494cbeacb56927ae1a5df7d3ec3b450a98fe41 (diff)
remove unnecessary verbosity (nw)
-rw-r--r--src/osd/modules/output/network.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/osd/modules/output/network.cpp b/src/osd/modules/output/network.cpp
index aa88320b6b2..e350cfc99dd 100644
--- a/src/osd/modules/output/network.cpp
+++ b/src/osd/modules/output/network.cpp
@@ -71,7 +71,7 @@ private:
msg[ch] = '\0';
ch++;
std::strncpy(verb, msg, sizeof(verb)-1);
- printf("verb = [%s], ", verb);
+ //printf("verb = [%s], ", verb);
while (msg[ch] != ' ')
{
@@ -80,7 +80,7 @@ private:
ch++;
value = atoi(&msg[ch]);
- printf("value = %d\n", value);
+ //printf("value = %d\n", value);
if (!std::strcmp(verb, "send_id"))
{
@@ -122,7 +122,6 @@ private:
void do_write(std::size_t length)
{
auto self(shared_from_this());
- printf("do_write: [%d: %s]\n", (int)length, m_data);
asio::async_write(m_socket, asio::buffer(m_data, length),
[this, self](std::error_code ec, std::size_t /*length*/)
{