-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlog.go
29 lines (26 loc) · 840 Bytes
/
log.go
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
package dads
import (
"fmt"
"log"
"time"
)
// Printf is a wrapper around Printf(...) that supports logging and removes redacted data.
func Printf(format string, args ...interface{}) {
// Actual logging to stdout & DB
now := time.Now()
msg := FilterRedacted(fmt.Sprintf("%s: "+format, append([]interface{}{ToYMDHMSDate(now)}, args...)...))
_, err := fmt.Printf("%s", msg)
if err != nil {
log.Printf("Err: %s", err.Error())
}
}
// PrintfNoRedacted is a wrapper around Printf(...) that supports logging and don't removes redacted data
func PrintfNoRedacted(format string, args ...interface{}) {
// Actual logging to stdout & DB
now := time.Now()
msg := fmt.Sprintf("%s: "+format, append([]interface{}{ToYMDHMSDate(now)}, args...)...)
_, err := fmt.Printf("%s", msg)
if err != nil {
log.Printf("Err: %s", err.Error())
}
}