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 (
"encoding/pem"
"io/ioutil"
"log"
"os"
"path/filepath"
@ -54,6 +55,8 @@ func Dump(data *StoredData, baseConfig *BaseConfig) error {
}
}
log.Println("dumped new certificate data")
return nil
}