Navigation Menu

Skip to content

Commit

Permalink
Print the error message, when message could not be read
Browse files Browse the repository at this point in the history
  • Loading branch information
g3force committed Jun 17, 2018
1 parent da0ec46 commit ea60a3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ssl-logplayer/logplayer.go
Expand Up @@ -54,7 +54,7 @@ func main() {
for logReader.HasMessage() {
msg, err := logReader.ReadMessage()
if err != nil {
log.Println("Could not read message")
log.Println("Could not read message", err)
continue
}
if isRunningStage(curStage) {
Expand Down

0 comments on commit ea60a3e

Please sign in to comment.