Add a log entry about which storage backend is in use
continuous-integration/drone/push Build is passing Details

This commit is contained in:
nemunaire 2022-09-07 11:37:13 +02:00
parent 3c14a3685c
commit a2903b73a0
1 changed files with 1 additions and 0 deletions

View File

@ -73,6 +73,7 @@ func main() {
} else {
log.Fatalf("%q is not a valid storage backend.", *backend)
}
log.Printf("Using %s storage backend", *backend)
pe := &PictureExplorer{
FileBackend: storage_backend,