kirillDanshin / dlog

Simple build-time controlled debug log with ability to log where the logger was called

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

No line break

toby3d opened this issue · comments

In dlog.F() and other functions line break not exists.

Tested main.go:

package main

import log "github.com/kirillDanshin/dlog"

func main() {
	log.Ln("LN")
	log.D("D")
	log.F("F")
	log.P("P")
}

Output:

2017/02/05 06:27:02 LN
(string) (len=1) "D"
F2017/02/05 06:27:02 P

Thanks @toby3d 🙂