github.com/litesolutions/justifay-api@v1.0.0-2.0.20220707114139-46f28a909481/model/log.go (about) 1 package model 2 3 import "context" 4 5 // Logger represents logging interface 6 type Logger interface { 7 // source, msg, error, params 8 Log(context.Context, string, string, error, map[string]interface{}) 9 }