diff options
author | Determinant <[email protected]> | 2019-06-28 15:37:22 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2019-06-28 15:37:22 -0400 |
commit | 710e9e8961cf5039b425e66d2042942b7e4af0c8 (patch) | |
tree | f69db46552945e945b5603d1d254df7e77d17b26 /test/test_msgnet.cpp | |
parent | d28bf1b0c8baec3c5ab40cfb988ff974f98da439 (diff) |
clean up code
Diffstat (limited to 'test/test_msgnet.cpp')
-rw-r--r-- | test/test_msgnet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_msgnet.cpp b/test/test_msgnet.cpp index 5578031..50e35dc 100644 --- a/test/test_msgnet.cpp +++ b/test/test_msgnet.cpp @@ -94,7 +94,7 @@ struct MyNet: public MsgNetworkByteOp { { if (conn->get_mode() == ConnPool::Conn::ACTIVE) { - printf("[%s] Connected, sending hello.\n", + printf("[%s] connected, sending hello.\n", this->name.c_str()); /* send the first message through this connection */ send_msg(MsgHello(this->name, "Hello there!"), @@ -106,7 +106,7 @@ struct MyNet: public MsgNetworkByteOp { } else { - printf("[%s] Disconnected, retrying.\n", this->name.c_str()); + printf("[%s] disconnected, retrying.\n", this->name.c_str()); /* try to reconnect to the same address */ connect(conn->get_addr(), false); } |