Skip to content

Commit 4ce84a1

Browse files
author
cgallot
committed
fix error messages
1 parent 6844174 commit 4ce84a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

submit.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ func main() {
105105
if inTheList(protocol, protocols) {
106106
storage, err := upload.New(conf[protocol], protocol)
107107
if err != nil {
108-
log.Fatalf("Error while Initialise Upload Storage: %s", err)
108+
log.Fatalf("Error while initializing upload storage configurations: %s", err)
109109
}
110110

111111
if storage == nil {
@@ -119,7 +119,7 @@ func main() {
119119
}
120120
}
121121
} else {
122-
log.Fatalf("Error while Initialise Upload Storage: protocol %s isn't configured in %s or isn't supported", protocol, configPath)
122+
log.Fatalf("Error while initializing upload storage configurations: protocol %s isn't configured in %s or isn't supported", protocol, configPath)
123123
}
124124
}
125125

0 commit comments

Comments
 (0)