From a2903b73a07175d673ac90175ac3113cf774c200 Mon Sep 17 00:00:00 2001 From: Pierre-Olivier Mercier Date: Wed, 7 Sep 2022 11:37:13 +0200 Subject: [PATCH] Add a log entry about which storage backend is in use --- main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main.go b/main.go index 1b0465c..3515f3d 100644 --- a/main.go +++ b/main.go @@ -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,