System.DebugLog

while researching for my Swift framework I ran across this Xojo function

system.debuglog(msg)

which is basically the equivalant to the Swift “print” (ie. goes to console)

But I noticed that Xojo inserted at least TWO messages of its own

8:01:12 AM : My Application Launched
             where did this go < I sent this one
8:03:58 AM : My Application Ended

Other than those two, does Xojo inject any other time stamped messages along the way?

I have never seen one. It only time stamps a message if it has been more than a second since the prior time stamped message, AFAIK.

pretty sure those are generated BY the IDE and posted to the log panel - and are NOT log message from the running app itself

I figured that much… the question was are there any other such messages generated by the IDE like those

Not that I recall