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