Content inside fengaldar
(The raw file follows this syntax highlighted file.)
package fengaldar_test
import (
fen "git.ondollo.com/fengaldar"
)
func ExampleNewLogger() {
// import ( fen "git.ondollo.com/fengaldar")
l := fen.NewLogger()
l.Println("Println")
l.Log("Log")
l.Debug("Debug Log")
l.Log("Log with context", fen.LogContext{"a": "b", "c": "d"})
}
func ExampleNewLoggerWithOptions() {
// import ( fen "git.ondollo.com/fengaldar")
l := fen.NewLoggerWithOptions(fen.Options{fen.Debug, fen.Debug, "15:04:05.000"})
l.Debug("Debug Log")
l.Info("Info Log")
l.Log("Log with context", fen.LogContext{"a": "b", "c": "d"})
}
func ExampleNewJSONLogger() {
// import ( fen "git.ondollo.com/fengaldar")
l := fen.NewJSONLogger()
l.Debug("Debug Log")
l.Info("Info Log")
l.Log("Log with context", fen.LogContext{"a": "b", "c": "d"})
}
func ExampleNewJSONLoggerWithOptions() {
// import ( fen "git.ondollo.com/fengaldar")
l := fen.NewJSONLoggerWithOptions(fen.Options{fen.Debug, fen.Debug, "15:04:05.000"})
l.Debug("Debug Log")
l.Log("Log with context", fen.LogContext{"a": "b", "c": "d"})
}
package fengaldar_test import ( fen "git.ondollo.com/fengaldar" ) func ExampleNewLogger() { // import ( fen "git.ondollo.com/fengaldar") l := fen.NewLogger() l.Println("Println") l.Log("Log") l.Debug("Debug Log") l.Log("Log with context", fen.LogContext{"a": "b", "c": "d"}) } func ExampleNewLoggerWithOptions() { // import ( fen "git.ondollo.com/fengaldar") l := fen.NewLoggerWithOptions(fen.Options{fen.Debug, fen.Debug, "15:04:05.000"}) l.Debug("Debug Log") l.Info("Info Log") l.Log("Log with context", fen.LogContext{"a": "b", "c": "d"}) } func ExampleNewJSONLogger() { // import ( fen "git.ondollo.com/fengaldar") l := fen.NewJSONLogger() l.Debug("Debug Log") l.Info("Info Log") l.Log("Log with context", fen.LogContext{"a": "b", "c": "d"}) } func ExampleNewJSONLoggerWithOptions() { // import ( fen "git.ondollo.com/fengaldar") l := fen.NewJSONLoggerWithOptions(fen.Options{fen.Debug, fen.Debug, "15:04:05.000"}) l.Debug("Debug Log") l.Log("Log with context", fen.LogContext{"a": "b", "c": "d"}) }