mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Update logrus to 1.2 and add as a direct dependency * Create an mlog/human package for pretty-printing logs This package can read JSON logs from mattermost.log, and output the data to either logrus or a custom formatter, to make the logs more human readable. * Create a command for outputting human-readable logs This command will read JSON data from mattermost.log or stdin, and output in a human readable format. An optional argument can be used to activate logrus output (which includes color support). * Reorganize code in mlog/human and improve logrus timestamp formatting
12 lines
393 B
Modula-2
12 lines
393 B
Modula-2
module github.com/sirupsen/logrus
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/konsorten/go-windows-terminal-sequences v1.0.1
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/stretchr/objx v0.1.1 // indirect
|
|
github.com/stretchr/testify v1.2.2
|
|
golang.org/x/crypto v0.0.0-20180904163835-0709b304e793
|
|
golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33
|
|
)
|