Summary
    Cake Logger implmentation
    
		- Namespace
 - Cake
.EntityFramework .CakeTranslation  - Interfaces
 - Base Types
 - 
									
- object
 
 
							graph TD
	Base0["object"]-->Type
	Interface0["ILogger"]-.->Type
	click Interface0 "/Cake.EntityFramework/api/Cake.EntityFramework.Interfaces/ILogger"
	Type["CakeLogger"]
class Type type-node
						
					Syntax
public class CakeLogger : ILogger
			Constructors
| Name | Summary | 
|---|---|
| CakeLogger | 
									Cake logger implementation | 
Methods
| Name | Value | Summary | 
|---|---|---|
| Debug | 
								void | 
									 
    Logs debug information which includes the most detailed information.
     
								 | 
							
| Error | 
								void | 
									 
    Logs errors or other runtime errors or unexpected conditions.
     
								 | 
							
| Information | 
								void | 
									 
    Logs information or 'interesting' runtime events.
     
								 | 
							
| Verbose | 
								void | 
									 
    Logs verbose or detailed information on the flow through the system.
     
								 | 
							
| Warning | 
								void | 
									 
    Logs warnings such as use of deprecated APIs, poor use of API, 'almost' errors, other runtime situations
    that are undesirable or unexpected, but not necessarily "wrong".
     
								 |