diff options
| author | Jakob Unterwurzacher | 2018-04-02 18:32:30 +0200 | 
|---|---|---|
| committer | Jakob Unterwurzacher | 2018-04-02 18:32:30 +0200 | 
| commit | b6c8960b01f9e5366814b0dada57a0b1e6a031d9 (patch) | |
| tree | 6a65255c30c7bcd086523fd4e0970d3b59b230de /internal/tlog | |
| parent | e6caf56ea4ab10e747aa5dfc0a768cb8176ebe6a (diff) | |
fsck: clean up log output
Make sure we get only 1 warning output per
problem.
Also, add new corruption types to broken_fs_v1.4.
Diffstat (limited to 'internal/tlog')
| -rw-r--r-- | internal/tlog/log.go | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/internal/tlog/log.go b/internal/tlog/log.go index f6c0acf..1c80911 100644 --- a/internal/tlog/log.go +++ b/internal/tlog/log.go @@ -110,6 +110,8 @@ func init() {  	Warn = &toggledLogger{  		Enabled: true,  		Logger:  log.New(os.Stderr, "", 0), +		prefix:  ColorYellow, +		postfix: ColorReset,  	}  	Fatal = &toggledLogger{  		Enabled: true, | 
