[ox/std] Increase trace buffer length

(synced from 0f1fbe40dd)
This commit is contained in:
2021-05-07 06:48:17 -05:00
parent dc7dc0094f
commit c7c3e21633
+2 -1
View File
@@ -15,6 +15,7 @@
#include "bstring.hpp"
#include "fmt.hpp"
#include "hashmap.hpp"
#include "units.hpp"
extern "C" {
@@ -34,7 +35,7 @@ struct TraceMsg {
int line = 0;
uint64_t time = 0;
const char *ch = "";
BString<100> msg;
BString<units::KB * 10> msg;
};
template<typename T>