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 | 
|---|---|
| Cake | An attribute used to mark script method aliases. | 
| Cake | 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. | 
