This commit is contained in:
Fernandez Ludovic 2019-04-20 21:38:15 +02:00
parent 365e3ac788
commit 4ca8b104b5
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,6 @@ package dumper
import ( import (
"encoding/pem" "encoding/pem"
"io/ioutil" "io/ioutil"
"log"
"os" "os"
"path/filepath" "path/filepath"
@ -55,8 +54,6 @@ func Dump(data *StoredData, baseConfig *BaseConfig) error {
} }
} }
log.Println("dumped new certificate data")
return nil return nil
} }

View File

@ -6,6 +6,7 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
"io/ioutil" "io/ioutil"
"log"
"github.com/abronan/valkeyrie" "github.com/abronan/valkeyrie"
"github.com/abronan/valkeyrie/store" "github.com/abronan/valkeyrie/store"
@ -53,6 +54,8 @@ func watch(kvStore store.Store, storeKey string, baseConfig *dumper.BaseConfig)
if err != nil { if err != nil {
return err return err
} }
log.Println("Dumped new certificate data.")
} }
} }