more logging stuff

This commit is contained in:
Asuro
2025-03-27 22:17:58 +01:00
parent 2ff08d7258
commit 90d4c3df1b
5 changed files with 59 additions and 3 deletions

View File

@@ -36,6 +36,8 @@ namespace LogInternal
struct LogHistory
{
char LogBuffer[LogInternal::MaxLineSize * LogInternal::LogHistorySize]{0};
char FileBuffer[LogInternal::MaxLineSize * LogInternal::LogHistorySize]{0};
uint32_t LineBuffer[LogInternal::LogHistorySize]{0};
int32_t WriteIdx = 0;
int64_t WriteTime[LogInternal::LogHistorySize]{0};
};