LoggingAliases.

NormalVerbosity(ICakeContext) Method

Summary

Sets the log verbosity to normal and returns a disposable that restores the log verbosity on dispose.
Namespace
Cake.Common.Diagnostics
Containing Type
LoggingAliases

Syntax

[CakeMethodAlias]
[CakeAliasCategory("Verbosity")]
public static IDisposable NormalVerbosity(this ICakeContext context)

Examples

using (NormalVerbosity())
{
    Error("Show me.");
    Warning("Show me.");
    Information("Show me.");
    Verbose("Hide me.");
    Debug("Hide me.");
}

Attributes

Type Description
CakeMethodAliasAttribute An attribute used to mark script method aliases.
CakeAliasCategoryAttribute An attribute used for documentation of alias methods/properties.

Parameters

Name Type Description
context ICakeContext the context.

Return Value

Type Description
IDisposable A disposable that restores the log verbosity.