mirror of
https://github.com/xenia-project/xenia.git
synced 2026-04-20 22:13:40 +00:00
Make the log buffer stupid large.
This commit is contained in:
parent
53527bef17
commit
d3ddf0e718
1 changed files with 1 additions and 1 deletions
|
|
@ -69,7 +69,7 @@ void format_log_line(char* buffer, size_t buffer_count, const char* file_path,
|
|||
}
|
||||
}
|
||||
|
||||
thread_local char log_buffer[2048];
|
||||
thread_local char log_buffer[16 * 1024];
|
||||
|
||||
void log_line(const char* file_path, const uint32_t line_number,
|
||||
const char level_char, const char* fmt, ...) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue