Skip to content

Commit

Permalink
logger: Fix typo on Fatal messages
Browse files Browse the repository at this point in the history
  • Loading branch information
geaaru committed Dec 8, 2024
1 parent 3432a0e commit e9264ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/logger/logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,6 @@ func (l *SshCLogger) Error(mess ...interface{}) {
}

func (l *SshCLogger) Fatal(mess ...interface{}) {
l.Error(mess)
l.Error(mess...)
os.Exit(1)
}

0 comments on commit e9264ea

Please sign in to comment.