|
|
It is a known problem (or behavior) with #debug and the message window.
#debug "This is my message"
....will NOT show up in the 'messages' window, even though it should do so. It
needs to have a 'line break' at the end \n like this:
#debug "This is my message\n"
Here is another example that also works, because it uses more than one #debug:
#debug "This is my message" // no \n here this time-- but it WILL show up now,
// because the 2nd #debug *does* use \n
#declare FOO = 347.188;
#debug concat("\n","FOO = ", str(FOO,0,3),"\n")
It is complicated! ;-)
Post a reply to this message
|
|