mirror of
https://github.com/caddyserver/caddy.git
synced 2025-11-11 02:31:16 +00:00
Add ExtraInfo to EventHook (#1692)
* Update plugins.go * Add extraInfo to eventHook * Add extraInfo to eventHook * Update run.go * Update run.go * Update run.go
This commit is contained in:
parent
6b8e40b3fb
commit
cbdd3a4f8e
3 changed files with 5 additions and 5 deletions
|
|
@ -224,7 +224,7 @@ const (
|
|||
)
|
||||
|
||||
// EventHook is a type which holds information about a startup hook plugin.
|
||||
type EventHook func(eventType EventName) error
|
||||
type EventHook func(eventType EventName, eventInfo interface{}) error
|
||||
|
||||
// RegisterEventHook plugs in hook. All the hooks should register themselves
|
||||
// and they must have a name.
|
||||
|
|
@ -241,9 +241,9 @@ func RegisterEventHook(name string, hook EventHook) {
|
|||
// EmitEvent executes the different hooks passing the EventType as an
|
||||
// argument. This is a blocking function. Hook developers should
|
||||
// use 'go' keyword if they don't want to block Caddy.
|
||||
func EmitEvent(event EventName) {
|
||||
func EmitEvent(event EventName, info interface{}) {
|
||||
for name, hook := range eventHooks {
|
||||
err := hook(event)
|
||||
err := hook(event, info)
|
||||
|
||||
if err != nil {
|
||||
log.Printf("error on '%s' hook: %v", name, err)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue