Revert "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 6eddb3e58743d17032d66d86614b9978a4ffa1e7
 (DIR) parent 6e03c96a20c63072c3699148947eacc5be0ff5d0
 (HTM) Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
       Date:   Sun, 19 Mar 2017 10:23:54 +0100
       
       Revert "helpers: Add a Debug method to DistinctLogger"
       
       Not needed.
       
       This reverts commit 4382a8a6a030520d9f094b3d7bb8f3ae3f08b187.
       
       Diffstat:
         M helpers/general.go                  |       7 -------
       
       1 file changed, 0 insertions(+), 7 deletions(-)
       ---
 (DIR) diff --git a/helpers/general.go b/helpers/general.go
       @@ -213,13 +213,6 @@ 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{}) {