helpers: Add a Debug method to DistinctLogger - hugo - [fork] hugo port for 9front
(HTM) git clone git@git.drkhsh.at/hugo.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
(DIR) commit 4382a8a6a030520d9f094b3d7bb8f3ae3f08b187
(DIR) parent 9dfb9c14454e6184cd7ff52f6b9f1beffbadf1e5
(HTM) Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Date: Sat, 18 Mar 2017 17:31:42 +0100
helpers: Add a Debug method to DistinctLogger
Diffstat:
M helpers/general.go | 7 +++++++
1 file changed, 7 insertions(+), 0 deletions(-)
---
(DIR) diff --git a/helpers/general.go b/helpers/general.go
@@ -213,6 +213,13 @@ type DistinctLogger struct {
m map[string]bool
}
+// Debug prints all the log entries to standard output.
+func (l *DistinctLogger) Debug() {
+ for k, _ := range l.m {
+ fmt.Println(k)
+ }
+}
+
// Println will log the string returned from fmt.Sprintln given the arguments,
// but not if it has been logged before.
func (l *DistinctLogger) Println(v ...interface{}) {