From 46870e9341f63c9ed86fd97469c9ddadff4cf875 Mon Sep 17 00:00:00 2001 From: Hipposgrumm <60556345+Hipposgrumm@users.noreply.github.com> Date: Mon, 2 Dec 2024 23:03:13 -0700 Subject: [PATCH] Removed debug logged messages. --- src/Controllers/Common/GroupController.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Controllers/Common/GroupController.cs b/src/Controllers/Common/GroupController.cs index d911b60..2019356 100644 --- a/src/Controllers/Common/GroupController.cs +++ b/src/Controllers/Common/GroupController.cs @@ -61,9 +61,7 @@ public class GroupController : Controller { public Schema.Group[] GetGroupsByGroupType([FromForm] string apiKey, [FromForm] string groupType) { AddEMDGroups(); List groups = new List(); - Console.WriteLine("Wanting "+apiKey); foreach (Model.Group group in ctx.Groups) { - Console.WriteLine($"{group.Name} is {group.Type} with {group.ApiKey}"); if (group.ApiKey == apiKey && group.Type.ToString() == groupType) groups.Add(new Schema.Group { GroupID = group.GroupID.ToString(), Name = group.Name,