TaskPerformerBaseLogLine Method (String, String, Boolean) |
Logs the line in LineToLog in the output window, based on the verbose setting isVerboseMessage, which means that the line is not logged
when the verbose checkbox is disabled if isVerboseMessage is set to true. Always appends a newline.
Namespace:
SD.LLBLGen.Pro.GeneratorCore
Assembly:
SD.LLBLGen.Pro.GeneratorCore (in SD.LLBLGen.Pro.GeneratorCore.dll) Version: 5.1.0.0 (5.1.0)
Syntax public void LogLine(
string lineToLog,
string source,
bool isVerboseMessage
)
Public Sub LogLine (
lineToLog As String,
source As String,
isVerboseMessage As Boolean
)
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
See Also