LogError message gets formatted into html

String msg = "<h2>Options:</h2><div><ul><li>item1</li><li>item2</li></ul></div>";
when calling session.logError(msg);, the above message gets formatted in the workbench log tab.
It used to display the log as a regular string:
<h2>Options:</h2><div><ul><li>item1</li><li>item2</li></ul></div>

But now it displays it like this:

Options:

  • item1
  • item2

This is only for session.logError, the other log levels display correctly. This started happening on version 6.0.24a. Is this a bug?

Looks like this is a bug we

Looks like this is a bug we introduced in 6.0.24a. Thanks for bringing it up. Watch for a fix in the next alpha release.

Todd