• 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.

    Parameters

    • message: string

      The debug message to display to the user

    Returns void

    Example

    debug("Calculating price for item: " + Item.ProductName);
    debug("Base price: $" + Item.Price + ", Quantity: " + Item.Quantity);

Generated using TypeDoc