BoxedAppSDK_WriteLog

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.

In addition to automatic SDK logging, you can also write custom messages to the log.
Use BoxedAppSDK_WriteLog to add your own messages to help with debugging or tracking application behavior.

Syntax

void __stdcall BoxedAppSDK_WriteLog(LPCTSTR szMessage);
procedure BoxedAppSDK_WriteLog(szMessage: PAnsiChar); stdcall;

Parameters

szMessage
Specifies the text message to write to the log.

See Also