Skip to content

Commit

Permalink
Fix typo in log message
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Breidenstein committed Mar 7, 2019
1 parent 473ba9d commit ac0587d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion irc.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func ircConnection(config *viper.Viper, channelList []string) {
for {
if err := client.Connect(); err != nil {
log.Warnf("Connection to %s terminated: %s", client.Server(), err)
log.Warn("Reconnecting to in 30 seconds...")
log.Warn("Reconnecting in 30 seconds...")
time.Sleep(30 * time.Second)
}
}
Expand Down

0 comments on commit ac0587d

Please sign in to comment.