LoggingAliases.

Warning(ICakeContext, object) Method

Summary

Writes an warning message to the log using the specified value.
Namespace
Cake.Common.Diagnostics
Containing Type
LoggingAliases

Syntax

[CakeMethodAlias]
[CakeAliasCategory("Warning")]
public static void Warning(this ICakeContext context, object value)

Examples

Warning(new {FirstName = "John", LastName="Doe"});

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.
value object The value.

Return Value

Type Description
void