diff --git a/Libraries/Core/Routers/HttpRouter.cs b/Libraries/Core/Routers/HttpRouter.cs index 33dbeabf..93fe24b8 100644 --- a/Libraries/Core/Routers/HttpRouter.cs +++ b/Libraries/Core/Routers/HttpRouter.cs @@ -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; }