Summary
Writes an error message to the log using the specified log message action.
Evaluation message only if verbosity same or more verbose.
Syntax
[CakeMethodAlias]
[CakeAliasCategory("Error")]
public static void Error(this ICakeContext context, LogAction logAction)
Examples
Error(logAction=>logAction("Hello {0}! Today is an {1:dddd}", "World", DateTime.Now));
Attributes
Parameters
Name |
Type |
Description |
context |
ICakeContext |
the context. |
logAction |
LogAction |
The function called for message when logging. |
Return Value