Output a debug message to the user interface. Debug messages are typically used during development and troubleshooting to provide detailed information about script execution and calculations.
The debug message to display to the user
debug("Calculating price for item: " + Item.ProductName);debug("Base price: $" + Item.Price + ", Quantity: " + Item.Quantity); Copy
debug("Calculating price for item: " + Item.ProductName);debug("Base price: $" + Item.Price + ", Quantity: " + Item.Quantity);
Generated using TypeDoc
Output a debug message to the user interface. Debug messages are typically used during development and troubleshooting to provide detailed information about script execution and calculations.