From 4382a8a6a030520d9f094b3d7bb8f3ae3f08b187 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Sat, 18 Mar 2017 17:31:42 +0100 Subject: [PATCH] helpers: Add a Debug method to DistinctLogger --- helpers/general.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/helpers/general.go b/helpers/general.go index f9e67e72d..e6435179c 100644 --- 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{}) {