jscript: Added more useful debug traces.
This commit is contained in:
parent
b93dbb49c0
commit
e8766bb66f
|
@ -70,6 +70,8 @@ static IUnknown *create_activex_object(script_ctx_t *ctx, const WCHAR *progid)
|
|||
GUID guid;
|
||||
HRESULT hres;
|
||||
|
||||
TRACE("%s\n", debugstr_w(progid));
|
||||
|
||||
hres = CLSIDFromProgID(progid, &guid);
|
||||
if(FAILED(hres))
|
||||
return NULL;
|
||||
|
|
|
@ -2458,7 +2458,7 @@ static HRESULT enter_bytecode(script_ctx_t *ctx, bytecode_t *code, function_code
|
|||
op = code->instrs[exec_ctx->ip].op;
|
||||
hres = op_funcs[op](exec_ctx);
|
||||
if(FAILED(hres)) {
|
||||
TRACE("EXCEPTION\n");
|
||||
TRACE("EXCEPTION %08x\n", hres);
|
||||
|
||||
if(!exec_ctx->except_frame)
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue