msi: Improve some traces.

This commit is contained in:
Hans Leidekker 2010-01-28 11:06:05 +01:00 committed by Alexandre Julliard
parent 7c9cb1e1be
commit aa19638cb9
1 changed files with 2 additions and 2 deletions

View File

@ -4492,7 +4492,7 @@ static UINT ITERATE_StartService(MSIRECORD *rec, LPVOID param)
service = OpenServiceW(scm, name, SERVICE_START);
if (!service)
{
ERR("Failed to open service %s\n", debugstr_w(name));
ERR("Failed to open service %s (%u)\n", debugstr_w(name), GetLastError());
goto done;
}
@ -4500,7 +4500,7 @@ static UINT ITERATE_StartService(MSIRECORD *rec, LPVOID param)
if (!StartServiceW(service, numargs, vector))
{
ERR("Failed to start service %s\n", debugstr_w(name));
ERR("Failed to start service %s (%u)\n", debugstr_w(name), GetLastError());
goto done;
}