Support Board
Date/Time: Thu, 13 Feb 2025 06:45:46 +0000
Post From: AddMessageToLog not writing to log
[2020-11-22 06:56:48] |
User153286 - Posts: 49 |
I have the following code in my custom study, but it's not appearing in the Message Log int MyInt = 50; float MyFloat = 2.5f; SCString Buffer; Buffer.Format("My integer is %d. My float is: %f", MyInt, MyFloat); sc.AddMessageToLog(Buffer,0); Any suggestions why it won't write to the log? |