diff options
author | Determinant <[email protected]> | 2018-11-19 22:19:56 -0500 |
---|---|---|
committer | Determinant <[email protected]> | 2018-11-19 22:19:56 -0500 |
commit | 60c4af2602e18933f2b795500f44c6613c852f45 (patch) | |
tree | 4e4572be2e307e885f257cfeec23db16a7e6ec39 /src | |
parent | 86a583982c0ea8bd62be42c1c137fac1c82b706f (diff) |
correctly use std::forward
Diffstat (limited to 'src')
-rw-r--r-- | src/conn.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/conn.cpp b/src/conn.cpp index b131684..51a5346 100644 --- a/src/conn.cpp +++ b/src/conn.cpp @@ -304,7 +304,6 @@ void ConnPool::del_conn(const conn_t &conn) { update_conn(conn, false); conn->release_self(); /* remove the self-cycle */ ::close(conn->fd); - SALTICIDAE_LOG_INFO("remove_conn: %s", std::string(*conn).c_str()); conn->fd = -1; } } |