remove debug print, add another

This commit is contained in:
Harvey Tindall 2021-12-30 17:30:29 +00:00
parent d19f7d6b53
commit 8888807780
Signed by: hrfee
GPG Key ID: BBC65952848FB1A2
2 changed files with 2 additions and 1 deletions

2
api.go
View File

@ -536,6 +536,8 @@ func (app *appContext) newUser(req newUserDTO, confirmed bool) (f errorFunc, suc
} else {
app.info.Println("Created Ombi user")
}
} else {
app.debug.Printf("Skipping Ombi: Profile \"%s\" was empty", invite.Profile)
}
}
}

View File

@ -614,7 +614,6 @@ func (emailer *Emailer) deletedValues(reason string, app *appContext, noSub bool
template["reason"] = reason
template["message"] = app.config.Section("messages").Key("message").String()
}
fmt.Println("TTTT", template)
return template
}