From 66a8f9a684d14f29551c18e8af8e4f29f0e2c4b1 Mon Sep 17 00:00:00 2001 From: drobbins329 Date: Sat, 14 Aug 2021 08:24:02 -0400 Subject: [PATCH] debugging line removed. --- src/Discord.Net.Rest/DiscordRestApiClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Discord.Net.Rest/DiscordRestApiClient.cs b/src/Discord.Net.Rest/DiscordRestApiClient.cs index 350a156c7..42cde4cfc 100644 --- a/src/Discord.Net.Rest/DiscordRestApiClient.cs +++ b/src/Discord.Net.Rest/DiscordRestApiClient.cs @@ -235,7 +235,7 @@ namespace Discord.API options.BucketId = bucketId; string json = payload != null ? SerializeJson(payload) : null; - Console.WriteLine($"Sending JSON....\n{json}"); + var request = new JsonRestRequest(RestClient, method, endpoint, json, options); return DeserializeJson(await SendInternalAsync(method, endpoint, request).ConfigureAwait(false)); }