We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73551f5 commit 4029871Copy full SHA for 4029871
internal/config/config.go
@@ -449,7 +449,7 @@ func getConfigFilePaths() []string {
449
if err == nil {
450
paths = append(paths, path)
451
} else {
452
- slog.Warn("Unable to determine process's current directory")
+ slog.Warn("Unable to determine process's current directory", "error", err)
453
}
454
455
return paths
@@ -537,7 +537,7 @@ func resolveEnvironmentVariableLabels() map[string]string {
537
if len(splitLabel) == KeyValueNumber {
538
envLabels[splitLabel[0]] = splitLabel[1]
539
540
- slog.Warn("Unable to parse label: " + label)
+ slog.Warn("Unable to parse label ", "label", label)
541
542
543
0 commit comments