Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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
languagepowershell
$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.")

...