about summary refs log tree commit diff stats
path: root/import
diff options
context:
space:
mode:
Diffstat (limited to 'import')
-rw-r--r--import/main.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/import/main.go b/import/main.go
index b8ae633..87f8e4d 100644
--- a/import/main.go
+++ b/import/main.go
@@ -20,7 +20,8 @@ import (
 const timeout = 30 * time.Minute
 
 type Config struct {
-	ConfigFile string `conf:"short:c"`
+	ConfigFile string     `conf:"short:c"`
+	LogLevel   slog.Level `conf:"default:INFO"`
 }
 
 func main() {
@@ -36,6 +37,7 @@ func main() {
 		}
 		log.Panicf("parsing runtime configuration: %v", err)
 	}
+	slog.SetLogLoggerLevel(runtimeConfig.LogLevel)
 
 	cfg, err := config.GetConfig(runtimeConfig.ConfigFile)
 	if err != nil {