Versions Compared

Key

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

...

Expand
titleYou can relate messages together using message id that is returned from queue.push{data=Message}

This is how you do it:

Code Block
local MessageId = queue.push{data="A message"}
iguana.logInfo("This is associated with that message.", MessageId)   

Now this custom informational log you just created, will be related in the logs to the message queued.

That’s it! Simple and powerful.