diff options
author | Jakob Unterwurzacher | 2016-01-20 20:55:56 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-01-20 20:57:00 +0100 |
commit | 17f0eb13396ad31083e786ed64aef368646c2aa6 (patch) | |
tree | af6ca1565ce456d41290ca956e4209d29413509c /cryptfs/config_test.go | |
parent | b9dd9e9a1cfabd4ecf7f4d3996b0a2c24cee75b4 (diff) |
Convert logging to standard Go log.Logger
This is in preparation of logging to syslog.
Diffstat (limited to 'cryptfs/config_test.go')
-rw-r--r-- | cryptfs/config_test.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cryptfs/config_test.go b/cryptfs/config_test.go index 817e6ae..5cf04bf 100644 --- a/cryptfs/config_test.go +++ b/cryptfs/config_test.go @@ -2,6 +2,8 @@ package cryptfs import ( "fmt" + "io/ioutil" + "os" "testing" "time" ) @@ -33,10 +35,10 @@ func TestLoadV2(t *testing.T) { func TestLoadV2PwdError(t *testing.T) { if !testing.Verbose() { - Warn.Disable() + Warn.SetOutput(ioutil.Discard) } _, _, err := LoadConfFile("config_test/v2.conf", "wrongpassword") - Warn.Enable() + Warn.SetOutput(os.Stderr) if err == nil { t.Errorf("Loading with wrong password must fail but it didn't") } |