Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ func getConfigFilePaths() []string {
if err == nil {
paths = append(paths, path)
} else {
slog.Warn("Unable to determine process's current directory")
slog.Warn("Unable to determine process's current directory", "error", err)
}

return paths
Expand Down Expand Up @@ -537,7 +537,7 @@ func resolveEnvironmentVariableLabels() map[string]string {
if len(splitLabel) == KeyValueNumber {
envLabels[splitLabel[0]] = splitLabel[1]
} else {
slog.Warn("Unable to parse label: " + label)
slog.Warn("Unable to parse label ", "label", label)
}
}
}
Expand Down