[ox/std] Increase trace buffer length

This commit is contained in:
Gary Talent 2021-05-07 06:48:17 -05:00
parent 1c509ca20d
commit 0f1fbe40dd

View File

@ -15,6 +15,7 @@
#include "bstring.hpp" #include "bstring.hpp"
#include "fmt.hpp" #include "fmt.hpp"
#include "hashmap.hpp" #include "hashmap.hpp"
#include "units.hpp"
extern "C" { extern "C" {
@ -34,7 +35,7 @@ struct TraceMsg {
int line = 0; int line = 0;
uint64_t time = 0; uint64_t time = 0;
const char *ch = ""; const char *ch = "";
BString<100> msg; BString<units::KB * 10> msg;
}; };
template<typename T> template<typename T>