about summary refs log tree commit diff stats
path: root/internal/config/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/config/config.go')
-rw-r--r--internal/config/config.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/config/config.go b/internal/config/config.go
index 12b9395..20fe21e 100644
--- a/internal/config/config.go
+++ b/internal/config/config.go
@@ -2,6 +2,7 @@ package config
 
 import (
 	"io/fs"
+	"log/slog"
 
 	"github.com/BurntSushi/toml"
 	"github.com/pkg/errors"
@@ -35,6 +36,7 @@ type Config struct {
 
 func GetConfig() (*Config, error) {
 	config := Config{}
+	slog.Debug("reading config.toml")
 	_, err := toml.DecodeFile("config.toml", &config)
 	if err != nil {
 		var pathError *fs.PathError