add prefix to error log for webhook execute

This commit is contained in:
Pierce 2023-03-26 17:26:52 -04:00
parent c66e2f849f
commit 95b889e0b0
No known key found for this signature in database
GPG Key ID: EC79465B0E865E47
2 changed files with 1 additions and 2 deletions

Binary file not shown.

View File

@ -84,9 +84,8 @@ func sendMessage(discord *discordgo.Session, message EventStruct) {
}
_, err := discord.WebhookExecute(WebhookId, WebhookSecret, true, params)
if err != nil {
log.Println(err)
log.Println("WebhookExecute errored: ", err)
}
}