1
0
mirror of https://github.com/getsops/sops.git synced 2026-02-05 12:45:21 +01:00

Move all loggers to logrus

This commit is contained in:
Adrian Utrilla
2017-09-06 17:36:39 -07:00
parent 3de6531eba
commit 17d5d6b65c
11 changed files with 54 additions and 16 deletions

View File

@@ -9,8 +9,16 @@ import (
"regexp"
"strconv"
"strings"
"github.com/sirupsen/logrus"
)
var log *logrus.Logger
func init() {
log = logrus.New()
}
type encryptedValue struct {
data []byte
iv []byte

View File

@@ -2,7 +2,6 @@ package aes
import (
"crypto/rand"
"log"
"strings"
"testing"
"testing/quick"