Skip to content

Commit f7da420

Browse files
committed
Fix error annotation in main
1 parent c18e3c5 commit f7da420

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ func main() {
2121
// Load the configuration
2222
cfg, err := configuration.Load()
2323
if err != nil {
24-
log.Fatal(fmt.Errorf("error loading configuration: %v", err))
24+
log.Fatal(fmt.Errorf("configuration loading failed: %w", err))
2525
}
2626

2727
// Initialize the db store

0 commit comments

Comments
 (0)