Functions API
Account Logger Log

Thaha
App Builder & Automation Expert
Stay Updated with ProcFu!
Subscribe to our newsletter for the latest tips, updates, and automation insights.
Subscribe NowThe Account Logger Log function writes a message to your ProcFu account's logger. It is useful for debugging scripts, monitoring automation flows, or recording internal events.
Arguments
- message (required): The message you want to write to the log.
- var: You can optionally pass a variable in ProcScript to log additional information. This can be a string, array, object, or any other data type.
Returns
Returns OK
if the message was successfully logged.
Example
$foo = "bar";
account_logger_log("Backup completed successfully.", $foo);