diff --git a/deps/ox/src/ox/std/trace.cpp b/deps/ox/src/ox/std/trace.cpp index 2d93845a..937e5274 100644 --- a/deps/ox/src/ox/std/trace.cpp +++ b/deps/ox/src/ox/std/trace.cpp @@ -13,8 +13,6 @@ #include #endif -#include - #include "trace.hpp" namespace ox::trace { @@ -46,20 +44,6 @@ OutStream::OutStream(const char *file, int line, const char *ch, const char *msg OutStream::~OutStream() { gdblogger::logFunc(m_msg.file.c_str(), m_msg.line, m_msg.ch.c_str(), m_msg.msg.c_str()); -#if defined(OX_USE_STDLIB) - if (OxPrintTrace) { - auto pipe = fopen(OxPrintTrace, "a"); - if (pipe) { - constexpr std::size_t buffLen = 1024; - std::size_t size = 0; - uint8_t buff[buffLen]; - writeMC(buff, buffLen, &m_msg, &size); - - //write(pipe, buff, size); - fclose(pipe); - } - } -#endif }