diff --git a/GitHubWebhookResource/Out/Program.cs b/GitHubWebhookResource/Out/Program.cs index 7ae2cb5..0aaa7ba 100644 --- a/GitHubWebhookResource/Out/Program.cs +++ b/GitHubWebhookResource/Out/Program.cs @@ -53,11 +53,13 @@ } Console.Error.WriteLine("Attempting to update the webhook..."); await service.UpdateWebhook(payload, webhook.Id.Value); + Console.Error.WriteLine("Webhook updated successfully."); } else { Console.Error.WriteLine("Attempting to create the webhook..."); await service.CreateWebhook(payload); + Console.Error.WriteLine("Webhook created successfully."); } var created = DateTime.UtcNow;