get_EnableDebugLog

Description

Returns the current setting that determines whether the packed executable produces a debug log.
If this property returns VARIANT_TRUE, debug logging is enabled, and the packed EXE will generate diagnostic output during execution.

Syntax

HRESULT get_EnableDebugLog([out, retval] VARIANT_BOOL* pbValue);

Parameters

pbValue
[out, retval] Receives VARIANT_TRUE if debug logging is enabled; otherwise, VARIANT_FALSE.

Remarks

This property corresponds to the same configuration flag that can be controlled using the method put_EnableDebugLog.
When logging is enabled, the packed executable writes debug information to the debugger output or to a file if a log path is specified.

See Also