BoxedAppSDK_SetLogFile

Description

During its operation, the SDK can record diagnostic information describing its internal actions and behavior.
By default, debug output is disabled, but it can be enabled using BoxedAppSDK_EnableDebugLog.

When logging is enabled, the SDK outputs diagnostic messages to the debugger window.
You can also make it duplicate this output to a file using BoxedAppSDK_SetLogFile.

Syntax

void __stdcall BoxedAppSDK_SetLogFile(LPCTSTR szLogFilePath);
procedure BoxedAppSDK_SetLogFile(szLogFilePath: PAnsiChar); stdcall;

Parameters

szLogFilePath
Specifies the path to the log file where BoxedApp SDK will write diagnostic output.

See Also