ILogger Interface

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(string) void
Logs debug information which includes the most detailed information.
Error(string) void
Logs errors or other runtime errors or unexpected conditions.
Information(string) void
Logs information or 'interesting' runtime events.
Verbose(string) void
Logs verbose or detailed information on the flow through the system.
Warning(string) 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".