Removed debug logging

This commit is contained in:
Chomp
2025-02-17 15:15:42 +00:00
parent 86b45c18a2
commit 570f9a19be
-10
View File
@@ -50,16 +50,6 @@ public class HttpRouter
wrapper.Output = wrapper.Output.Replace(sessionID, sessionID);
}
try
{
var filepath = $"c:\\SharpServer\\{req.Path.ToString().Substring(1).Replace("/", ".")}.json";
File.WriteAllText(filepath, wrapper.Output);
}
catch (Exception e)
{
Console.WriteLine(e);
}
return wrapper.Output;
}