Click or drag to resize
TaskPerformerBaseLogLine Method (String, String, Boolean, Boolean)
Logs the given line to the output window. Based on the verbose checkbox and the VerboseMessage flag the message is logged or not. If the verbose checkbox is set, also lines with VerboseMessage=true will be logged, otherwise these messages will be surpressed. Appends a newline if AppendNewLine is set to true.

Namespace:  SD.LLBLGen.Pro.GeneratorCore
Assembly:  SD.LLBLGen.Pro.GeneratorCore (in SD.LLBLGen.Pro.GeneratorCore.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public virtual void LogLine(
	string lineToLog,
	string source,
	bool isVerboseMessage,
	bool appendNewLine
)

Parameters

lineToLog
Type: SystemString
Line to log
source
Type: SystemString
Source description of the line
isVerboseMessage
Type: SystemBoolean
Flag to signal if the line is a VerboseMessage, which means it is only logged when the Verbose checkbox is set
appendNewLine
Type: SystemBoolean
Flag to signal if a Newline should be appended to the line.
See Also