Add a log entry about which storage backend is in use
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
nemunaire 2022-09-07 11:37:13 +02:00
parent 3c14a3685c
commit a2903b73a0

View File

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