Skip to content

Commit 6c036d6

Browse files
committed
update error messages
1 parent 968af2d commit 6c036d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ The commands work as following:
5656
if rawStreamCommand {
5757
h264FilePath, err := arguments.String("<h264file>")
5858
if err != nil {
59-
log.Error("Missing outfile parameter. Please specify a valid path like '/home/me/out.h264'")
59+
log.Error("Missing <h264file> parameter. Please specify a valid path like '/home/me/out.h264'")
6060
return
6161
}
6262
waveFilePath, err := arguments.String("<wavfile>")
6363
if err != nil {
64-
log.Error("Missing audiofile parameter. Please specify a valid path like '/home/me/out.raw'")
64+
log.Error("Missing <wavfile> parameter. Please specify a valid path like '/home/me/out.raw'")
6565
return
6666
}
6767
record(h264FilePath, waveFilePath)

0 commit comments

Comments
 (0)