summaryrefslogtreecommitdiff
path: root/modules/caddyhttp/caddylog/log.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/caddyhttp/caddylog/log.go')
-rw-r--r--modules/caddyhttp/caddylog/log.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/modules/caddyhttp/caddylog/log.go b/modules/caddyhttp/caddylog/log.go
index dfc9da5..d3110cc 100644
--- a/modules/caddyhttp/caddylog/log.go
+++ b/modules/caddyhttp/caddylog/log.go
@@ -13,24 +13,6 @@ func init() {
caddy2.RegisterModule(caddy2.Module{
Name: "http.middleware.log",
New: func() (interface{}, error) { return new(Log), nil },
- // TODO: Examples of OnLoad and OnUnload.
- OnLoad: func(instances []interface{}, priorState interface{}) (interface{}, error) {
- var counter int
- if priorState != nil {
- counter = priorState.(int)
- }
- counter++
- for _, inst := range instances {
- logInst := inst.(*Log)
- logInst.counter = counter
- }
- log.Println("State is now:", counter)
- return counter, nil
- },
- OnUnload: func(state interface{}) error {
- log.Println("Closing log files, state:", state)
- return nil
- },
})
}