fix: fixed events.stream time

This commit is contained in:
evilsocket 2018-01-08 07:10:11 +01:00
parent 3a2c5e14d2
commit be570432ef

View file

@ -61,7 +61,7 @@ func (s *EventsStream) Start() error {
var e session.Event
select {
case e = <-s.Session.Events.NewEvents:
fmt.Printf("[%s] [%s] %v\n", e.Time.UTC().Format("2006-01-02 15:04:05"), core.Green(e.Tag), e.Data)
fmt.Printf("[%s] [%s] %v\n", e.Time.Format("2006-01-02 15:04:05"), core.Green(e.Tag), e.Data)
break
case <-s.quit: