summaryrefslogtreecommitdiff
path: root/options.go
diff options
context:
space:
mode:
Diffstat (limited to 'options.go')
-rw-r--r--options.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/options.go b/options.go
index 3f4146f..a047f0c 100644
--- a/options.go
+++ b/options.go
@@ -16,10 +16,10 @@ func Base(s string) Option {
}
}
-func Logger(f func(...interface{})) Option {
+func Debug(f func(...interface{})) Option {
return func(t *Templates) error {
log = f
- log("logger set")
+ log("debugging templates")
return nil
}
}