add tiny logging after configuration dump

This commit is contained in:
Stephan Müller 2019-04-20 19:09:14 +02:00 committed by Fernandez Ludovic
parent 53608aca75
commit 365e3ac788

View File

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