Add tiny logging after configuration dump (#11)

This commit is contained in:
Stephan Müller 2019-04-20 21:42:19 +02:00 committed by Ludovic Fernandez
parent 53608aca75
commit 2bf9d3f1fc

View File

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