Skip to content

Commit e45c482

Browse files
committed
Merge #99: proxy-types: Fix missing space in server destroy log print
0c70a0f proxy-types: Fix missing space in server destroy log print (Ryan Ofsky) Pull request description: Top commit has no ACKs. Tree-SHA512: f9a53e7a59131f3079c682b0c132e84a6cbb36bd7eb2aa8fec9921b14ac110d734e858233031b27082e516c68151ad081967a8a1331afd94fbffd1d4ee02543b
2 parents e29f74e + 0c70a0f commit e45c482

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/mp/proxy-types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1420,7 +1420,7 @@ void clientDestroy(Client& client)
14201420
template <typename Server>
14211421
void serverDestroy(Server& server)
14221422
{
1423-
server.m_context.connection->m_loop.log() << "IPC server destroy" << typeid(server).name();
1423+
server.m_context.connection->m_loop.log() << "IPC server destroy " << typeid(server).name();
14241424
}
14251425

14261426
template <typename ProxyClient, typename GetRequest, typename... FieldObjs>

0 commit comments

Comments
 (0)