BoxedAppSDK_EnableDebugLog
Description
Enables or disables outputting debug data. During its operation, the SDK can record debug data that contains details on the performance of the SDK. By default, outputting debug data is disabled, but it can be enabled with BoxedAppSDK_EnableDebugLog. The SDK will output the data to the debugger window, but you can also have it duplicate all the output to a file using BoxedAppSDK_SetLogFile.
Syntax
C++
void __stdcall BoxedAppSDK_EnableDebugLog(BOOL bEnable);
Delphi
procedure BoxedAppSDK_EnableDebugLog(bEnable: BOOL); stdcall;
Parameters
bEnable
Set it to TRUE to enable logging, or to FALSE to disable.