We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35f8b0d commit bd48b7dCopy full SHA for bd48b7d
internal/scaffold/main.go
@@ -55,12 +55,12 @@ func main() {
55
56
app, err := service.New(service.Parameters{ApplicationStartInfo: info, Factories: factories})
57
if err != nil {
58
- log.Fatal("failed to construct the application: %w", err)
+ log.Fatalf("failed to construct the application: %v", err)
59
}
60
61
err = app.Run()
62
63
- log.Fatal("application run finished with error: %w", err)
+ log.Fatalf("application run finished with error: %v", err)
64
65
66
`
0 commit comments