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:
@@ -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
|
||||
|
||||
@@ -2,7 +2,6 @@ package aes
|
||||
|
||||
import (
|
||||
"crypto/rand"
|
||||
"log"
|
||||
"strings"
|
||||
"testing"
|
||||
"testing/quick"
|
||||
|
||||
Reference in New Issue
Block a user