Make the log buffer stupid large.

This commit is contained in:
Ben Vanik 2015-06-04 19:58:26 -07:00
parent 53527bef17
commit d3ddf0e718
1 changed files with 1 additions and 1 deletions

View File

@ -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, ...) {