Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.



Excerpt
hiddentrue

info(message) Adds a info message into the Log.


Function: info()

Adds a info message into the Log. This function is often used when creating a model and trying to work out why an Expression is not behaving as expected.

...

ArgumentTypeDescription
messageStringA message to appear in the Log. Note that this could be an Expression.

Examples

ifNull (in.rate, info("Missing rate") )

This example adds a message to the Log if no rate is found.

...