Get rid of logrus, it's TTY output is not friendly or human parseable if we will want users to send us logs.

This commit is contained in:
Eugene Bujak
2018-12-29 14:55:35 +03:00
parent a7e0f66492
commit 55a7ff7447
7 changed files with 9 additions and 13 deletions

View File

@@ -3,6 +3,7 @@ package dnsforward
import (
"bytes"
"fmt"
"log"
"net/http"
"os"
"path"
@@ -13,8 +14,6 @@ import (
"sync"
"time"
log "github.com/sirupsen/logrus"
"github.com/bluele/gcache"
"github.com/miekg/dns"
)