Remove logrus to allow for easier customization

This commit is contained in:
Arthur Barr
2018-02-22 17:29:06 +00:00
parent b497a04dcb
commit 91bf65ab57
52 changed files with 241 additions and 3795 deletions

View File

@@ -25,8 +25,6 @@ import (
"sync"
"testing"
"time"
log "github.com/sirupsen/logrus"
)
func TestMirrorLogWithoutRotation(t *testing.T) {
@@ -191,8 +189,3 @@ func TestMirrorLogCancelWhileWaiting(t *testing.T) {
wg.Wait()
// No need to assert anything. If it didn't work, the code would have hung (TODO: not ideal)
}
func init() {
log.SetLevel(log.DebugLevel)
log.SetFormatter(new(simpleTextFormatter))
}