TaskGroupElement.LogLine Method |
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.ApplicationCore.CodeGenerationMetaData.Tasks
Assembly:
SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.3.0.0 (5.3.0)
Syntaxprotected void LogLine(
string lineToLog,
string source,
bool isVerboseMessage,
bool appendNewLine
)
Protected Sub LogLine (
lineToLog As String,
source As String,
isVerboseMessage As Boolean,
appendNewLine As Boolean
)
Parameters
- lineToLog
- Type: System.String
Line to log - source
- Type: System.String
Source description of the line - isVerboseMessage
- Type: System.Boolean
Flag to signal if the line is a VerboseMessage, which means it is only logged when the Verbose checkbox is set - appendNewLine
- Type: System.Boolean
Flag to signal if a Newline should be appended to the line.
See Also