rpcrt4: Improve trace in RPCRT4_find_interface to print the interface identifier data as well as the object guid.

oldstable
Rob Shearman 2008-04-01 12:48:06 +01:00 committed by Alexandre Julliard
parent 772f3af9f0
commit c7f9b9347f
1 changed files with 3 additions and 1 deletions

View File

@ -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;
}