mirror of
https://github.com/binwiederhier/ntfy.git
synced 2025-04-04 13:47:36 +03:00
Bump version, add more details to rate_visitor logs
This commit is contained in:
parent
f4772b0c75
commit
0967414f79
6 changed files with 56 additions and 65 deletions
|
@ -119,12 +119,12 @@ func (e *Event) Fields(fields Context) *Event {
|
|||
return e
|
||||
}
|
||||
|
||||
// With adds the fields of the given Contexter structs to the log event by calling their With method
|
||||
func (e *Event) With(contexts ...Contexter) *Event {
|
||||
// With adds the fields of the given Contexter structs to the log event by calling their Context method
|
||||
func (e *Event) With(contexters ...Contexter) *Event {
|
||||
if e.contexters == nil {
|
||||
e.contexters = contexts
|
||||
e.contexters = contexters
|
||||
} else {
|
||||
e.contexters = append(e.contexters, contexts...)
|
||||
e.contexters = append(e.contexters, contexters...)
|
||||
}
|
||||
return e
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue