diff --git a/api.go b/api.go index 2e33509..0aa82dd 100644 --- a/api.go +++ b/api.go @@ -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) } } } diff --git a/email.go b/email.go index da5062e..5f6d995 100644 --- a/email.go +++ b/email.go @@ -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 }