Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-02-28 | tlog: stop embedding log.Logger to prevent mistakes | Jakob Unterwurzacher | |
A few places have called tlog.Warn.Print, which directly calls into log.Logger due to embedding, losing all features of tlog. Stop embedding log.Logger to make sure the internal functions cannot be called accidentially and fix (several!) instances that did. | |||
2017-03-05 | Drop Go 1.4 compatability code everywhere | Jakob Unterwurzacher | |
Yields a nice reduction in code size. | |||
2017-01-26 | tlog: better comment for the terminal colors | Jakob Unterwurzacher | |
2016-10-04 | A few more lint fixes | Jakob Unterwurzacher | |
2016-10-04 | lint fixes | Valient Gough | |
2016-07-06 | Add godoc comments to all internal packages | Jakob Unterwurzacher | |
2016-06-15 | Rename internal "toggledlog" package to "tlog" | Jakob Unterwurzacher | |
tlog is used heavily everywhere and deserves a shorter name. Renamed using sed magic, without any manual rework: find * -type f -exec sed -i 's/toggledlog/tlog/g' {} + |