Summary
Writes an informational message to the log using the specified log message action.
Evaluation message only if verbosity same or more verbose.
Syntax
[CakeMethodAlias]
[CakeAliasCategory("Information")]
public static void Information(this ICakeContext context, LogAction logAction)
Examples
Information(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