summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/keybase/go-keybase-chat-bot/kbchat/util.go
blob: 91cf5e331982141ca70f6f305f8f07eead609f50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package kbchat

import (
	"fmt"
	"log"
	"time"
)

func ErrToOK(err *error) string {
	if err == nil || *err == nil {
		return "ok"
	}
	return fmt.Sprintf("ERROR: %v", *err)
}

type DebugOutput struct {
	name string
}

func NewDebugOutput(name string) *DebugOutput {
	return &DebugOutput{
		name: name,
	}
}

func (d *DebugOutput) Debug(format string, args ...interface{}) {
	msg := fmt.Sprintf(format, args...)
	log.Printf("%s: %s\n", d.name, msg)
}

func (d *DebugOutput) Trace(err *error, format string, args ...interface{}) func() {
	msg := fmt.Sprintf(format, args...)
	start := time.Now()
	log.Printf("+ %s: %s\n", d.name, msg)
	return func() {
		log.Printf("- %s: %s -> %s [time=%v]\n", d.name, msg, ErrToOK(err), time.Since(start))
	}
}