CakeLogger Class

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(ICakeLog) Cake logger implementation

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".