Exemplo n.º 1
0
Arquivo: main.go Projeto: pressly/chi
func LogEntrySetFields(r *http.Request, fields map[string]interface{}) {
	entry := middleware.GetLogEntry(r).(*StructuredLoggerEntry)
	entry.logger = entry.logger.WithFields(fields)
	middleware.WithLogEntry(r, entry)
}
Exemplo n.º 2
0
Arquivo: main.go Projeto: pressly/chi
func LogEntrySetField(r *http.Request, key string, value interface{}) {
	entry := middleware.GetLogEntry(r).(*StructuredLoggerEntry)
	entry.logger = entry.logger.WithField(key, value)
	middleware.WithLogEntry(r, entry)
}