LoggingAliases.

Debug(ICakeContext, string, object[]) Method

Summary

Writes a debug message to the log using the specified format information.
Namespace
Cake.Common.Diagnostics
Containing Type
LoggingAliases

Syntax

[CakeMethodAlias]
[CakeAliasCategory("Debug")]
public static void Debug(this ICakeContext context, string format, params object[] args)

Examples

Debug("Hello {0}! Today is an {1:dddd}", "World", DateTime.Now);

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.
format string The format.
args object[] The arguments.

Return Value

Type Description
void