diff --git a/GlobalRankLookupCache/Controllers/BeatmapItem.cs b/GlobalRankLookupCache/Controllers/BeatmapItem.cs index d852111..08033fd 100644 --- a/GlobalRankLookupCache/Controllers/BeatmapItem.cs +++ b/GlobalRankLookupCache/Controllers/BeatmapItem.cs @@ -40,7 +40,6 @@ public BeatmapItem(int beatmapId, string highScoresTable) using (var cmd = db.CreateCommand()) { Interlocked.Increment(ref RankLookupController.Misses); - Console.Write("q"); cmd.CommandTimeout = 10; cmd.CommandText = $"select count(*) from {highScoresTable} where beatmap_id = {beatmapId} and score > {score} and hidden = 0"; @@ -50,8 +49,6 @@ public BeatmapItem(int beatmapId, string highScoresTable) cmd.CommandText = $"select count(*) from {highScoresTable} where beatmap_id = {beatmapId} and hidden = 0"; int total = (int)(long)(await cmd.ExecuteScalarAsync())!; - Console.Write("Q"); - return (pos, total); } }