struct

Log::Emitter

Inherits Struct / Value / Object

Helper DSL module for emitting log entries with data.

Instance methods

emit(message : String, data : Metadata | Hash | NamedTuple) : Entry
Source
emit(message : String) : Entry

Emits a logs entry with a message, and data attached to

Log.info &.emit("Program started")                         # No data, same as Log.info { "Program started" }
Log.info &.emit("User logged in", user_id: 42)             # With entry data
Log.info &.emit(action: "Logged in", user_id: 42)          # Empty string message, only data
Log.error exception: ex, &.emit("Oops", account: {id: 42}) # With data and exception
Source
emit(data : Metadata | Hash | NamedTuple) : Entry
Source
emit(message : String, **kwargs) : Entry
Source
emit
Source