Hi @elwayfan446,
Actually, there is a way... starting in EG 7.15, you can perform Project Log operations (enable/disable, get the log text, save to file, send email, or clear) via the EG automation interface. Here is an example of the Project Log related calls you could make in a VBScript (or PowerShell script, but different syntax):
Set objProjectLog = objProject.ProjectLog
objProjectLog.Clear()
' Other optional operations
'objProjectLog.Enabled = True
'strProjectLog = objProjectLog.Text
'objProjectLog.SaveAs "c:\temp\projectLog.txt"
'toList(0) = "me@here.com"
'objProjectLog.SendMail "", "", toList, ccList, "my subject", "my body text"
A common use would be to add a Clear call to a scheduled .vbs file (and optionally save the project log out before clearing).
In a future release, we'd like to expose more options directly in the UI for automatically managing the size of the project log.
Casey
... View more