Remove Guild ID from the tracing tags

This commit is contained in:
Daan Boerlage 2021-09-17 15:55:13 +02:00
parent 3d117aebe1
commit 954c6c2be3
Signed by: daan
GPG key ID: FCE070E1E4956606

View file

@ -18,7 +18,6 @@ namespace Geekbot.Core
Transaction = SentrySdk.StartTransaction(new Transaction(command.Name, "Exec")); Transaction = SentrySdk.StartTransaction(new Transaction(command.Name, "Exec"));
Transaction.SetTags(new [] Transaction.SetTags(new []
{ {
new KeyValuePair<string, string>("GuildId", Context.Guild.Id.ToString()),
new KeyValuePair<string, string>("Guild", Context.Guild.Name), new KeyValuePair<string, string>("Guild", Context.Guild.Name),
}); });
Transaction.User = new User() Transaction.User = new User()