Skip to content

Commit 0c70a0f

Browse files
committed
proxy-types: Fix missing space in server destroy log print
1 parent e29f74e commit 0c70a0f

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)