Tbol
Well-Known Member
- Joined
- Apr 7, 2019
- Messages
- 625
- Reaction score
- 71
Hello! Right now, I’m compiling my source without any debug flags, just using commands like make clean and make -j4. As a result, when my server crashes, it generates a rather useless crash dump file that doesn’t provide much useful information. Is there a way to compile the source with some kind of debug flags that would produce more detailed crash dump logs? Logs that would help me pinpoint exactly—or at least more accurately—which part of the code is causing the crash?
Currently, when I get a crash log, I only know which function caused it. But since there are 100+ Lua files using that function, it’s very difficult to find the exact problematic code, especially if I overlook something. So, I’m looking for a better solution, that would make my life easier
Currently, when I get a crash log, I only know which function caused it. But since there are 100+ Lua files using that function, it’s very difficult to find the exact problematic code, especially if I overlook something. So, I’m looking for a better solution, that would make my life easier