Method ScopedStep
ScopedStep(IBuildLogger, LogLevel, string, bool)
Begins a new build step and returns an ScopedBuildStep which will end the build step when disposed. It is recommended to use this in conjunction with the using statement.
Declaration
public static ScopedBuildStep ScopedStep(this IBuildLogger log, LogLevel level, string stepName, bool multiThreaded = false)
Parameters
Type | Name | Description |
---|---|---|
IBuild |
log | The build log. |
Log |
level | The log level of this step. |
string | stepName | A name associated with the step. |
bool | multiThreaded | True if within this build step the IBuildLogger will be used on multiple threads. |
Returns
Type | Description |
---|---|
Scoped |
Returns a ScopedBuildStep that will end the build step when it is disposed. |
ScopedStep(IBuildLogger, LogLevel, string, string)
Begins a new build step and returns an ScopedBuildStep which will end the build step when disposed. It is recommended to use this in conjunction with the using statement.
Declaration
public static ScopedBuildStep ScopedStep(this IBuildLogger log, LogLevel level, string stepName, string context)
Parameters
Type | Name | Description |
---|---|---|
IBuild |
log | The build log. |
Log |
level | The log level of this step. |
string | stepName | A name associated with the step. |
string | context | Adds an entry message the build step. This allows attaching specific context data without changing the stepName. |
Returns
Type | Description |
---|---|
Scoped |
Returns a ScopedBuildStep that will end the build step when it is disposed. |