ntdll: Move SEH exception info logs back to the seh channel.

These were accidentally moved as part of the introduction of +unwind.

Signed-off-by: Tim Clem <tclem@codeweavers.com>
This commit is contained in:
Tim Clem 2022-06-13 13:37:56 -07:00 committed by Alexandre Julliard
parent 5dcf77d8d0
commit f86a66b660

View file

@ -510,7 +510,7 @@ NTSTATUS WINAPI dispatch_exception( EXCEPTION_RECORD *rec, CONTEXT *context )
rec->ExceptionCode, rec->ExceptionFlags, rec->ExceptionAddress,
(void *)context->Rip, GetCurrentThreadId() );
for (c = 0; c < min( EXCEPTION_MAXIMUM_PARAMETERS, rec->NumberParameters ); c++)
TRACE( " info[%d]=%016I64x\n", c, rec->ExceptionInformation[c] );
TRACE_(seh)( " info[%d]=%016I64x\n", c, rec->ExceptionInformation[c] );
if (rec->ExceptionCode == EXCEPTION_WINE_STUB)
{