mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 13:15:59 +00:00
[umpnpmgr]
Silence device arrival debug messages. svn path=/trunk/; revision=44981
This commit is contained in:
parent
ffab3fc13c
commit
4c9596a9ad
1 changed files with 6 additions and 1 deletions
|
@ -2322,7 +2322,7 @@ PnpEventThread(LPVOID lpParameter)
|
||||||
DWORD len;
|
DWORD len;
|
||||||
DWORD DeviceIdLength;
|
DWORD DeviceIdLength;
|
||||||
|
|
||||||
DPRINT("Device arrival event: %S\n", PnpEvent->TargetDevice.DeviceIds);
|
DPRINT("Device enumerated: %S\n", PnpEvent->TargetDevice.DeviceIds);
|
||||||
|
|
||||||
DeviceIdLength = lstrlenW(PnpEvent->TargetDevice.DeviceIds);
|
DeviceIdLength = lstrlenW(PnpEvent->TargetDevice.DeviceIds);
|
||||||
if (DeviceIdLength)
|
if (DeviceIdLength)
|
||||||
|
@ -2342,6 +2342,11 @@ PnpEventThread(LPVOID lpParameter)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (UuidEqual(&PnpEvent->EventGuid, (UUID*)&GUID_DEVICE_ARRIVAL, &RpcStatus))
|
||||||
|
{
|
||||||
|
DPRINT("Device arrival: %S\n", PnpEvent->TargetDevice.DeviceIds);
|
||||||
|
/* FIXME: ? */
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
DPRINT1("Unknown event, GUID {%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}\n",
|
DPRINT1("Unknown event, GUID {%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}\n",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue