Summary
Logger contract
- Namespace
- Cake
.EntityFramework .Interfaces - Implementing Types
graph TD
Type["ILogger"]
class Type type-node
Type-.->Implementing0["CakeLogger"]
click Implementing0 "/Cake.EntityFramework/api/Cake.EntityFramework.CakeTranslation/CakeLogger"
Syntax
public interface ILogger
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".
|