$cs.Job_WriteLog
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
text to display in log entry
Â
Example
$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.")
returns nothing
Â