Commit c7f9b934 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

rpcrt4: Improve trace in RPCRT4_find_interface to print the interface identifier…

rpcrt4: Improve trace in RPCRT4_find_interface to print the interface identifier data as well as the object guid.
parent 772f3af9
......@@ -138,7 +138,9 @@ static RpcServerInterface* RPCRT4_find_interface(UUID* object,
}
LeaveCriticalSection(&server_cs);
if (&cif->entry == &server_interfaces) cif = NULL;
TRACE("returning %p for %s\n", cif, debugstr_guid(object));
TRACE("returning %p for object %s, if_id { %d.%d %s }\n", cif,
debugstr_guid(object), if_id->SyntaxVersion.MajorVersion,
if_id->SyntaxVersion.MinorVersion, debugstr_guid(&if_id->SyntaxGUID));
return cif;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment