Skip to content
This repository has been archived by the owner on Aug 16, 2022. It is now read-only.

Commit

Permalink
fix log
Browse files Browse the repository at this point in the history
  • Loading branch information
yk-eukarya committed Dec 6, 2021
1 parent e2e4c3e commit cd0f4b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/usecase/interactor/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ func init() {
var err error
passwordResetTextTMPL, err = textTmpl.New("passwordReset").Parse(passwordResetTextTMPLStr)
if err != nil {
log.Panicf("password reset email template parse error: %s", err)
log.Panicf("password reset email template parse error: %s\n", err)
}
passwordResetHTMLTMPL, err = htmlTmpl.New("passwordReset").Parse(passwordResetHTMLTMPLStr)
if err != nil {
log.Panicf("password reset email template parse error: %s", err)
log.Panicf("password reset email template parse error: %s\n", err)
}
}

Expand Down

0 comments on commit cd0f4b0

Please sign in to comment.