forked from cryptogarageinc/quickfix-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
screen_log.go
46 lines (36 loc) · 1.01 KB
/
screen_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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package quickfix
import (
"fmt"
"time"
)
type screenLog struct {
prefix string
}
func (l screenLog) OnIncoming(s string) {
logTime := time.Now().UTC()
fmt.Printf("<%v, %s, incoming>\n (%s)\n", logTime, l.prefix, s)
}
func (l screenLog) OnOutgoing(s string) {
logTime := time.Now().UTC()
fmt.Printf("<%v, %s, outgoing>\n (%s)\n", logTime, l.prefix, s)
}
func (l screenLog) OnEvent(s string) {
logTime := time.Now().UTC()
fmt.Printf("<%v, %s, event>\n (%s)\n", logTime, l.prefix, s)
}
func (l screenLog) OnEventf(format string, a ...interface{}) {
l.OnEvent(fmt.Sprintf(format, a...))
}
type screenLogFactory struct{}
func (screenLogFactory) Create() (Log, error) {
log := screenLog{"GLOBAL"}
return log, nil
}
func (screenLogFactory) CreateSessionLog(sessionID SessionID) (Log, error) {
log := screenLog{sessionID.String()}
return log, nil
}
//NewScreenLogFactory creates an instance of LogFactory that writes messages and events to stdout.
func NewScreenLogFactory() LogFactory {
return screenLogFactory{}
}