Syntax
$cs.Job_WriteLog(string functionname = "", string text = "")
Parameters
functionname
name of function to associate with log entry (default blank, Log_Sectionheader will override)
...
text to display in log entry
Example
Code Block | ||
---|---|---|
| ||
$cs.Job_WriteLog("PreInstall:","Application is running - retry later.") #when using Log_SectionHeader $cs.Log_SectionHeader("PreInstall",'o') $cs.Job_WriteLog("Application is running - retry later.") |
...