This commit is contained in:
Anatoly Yakovenko
2018-06-07 08:22:38 -07:00
committed by Greg Fitzgerald
parent 2ae5ce9f2c
commit d1eda334f3

View File

@ -210,6 +210,17 @@ to see the debug and info sections for streamer and server respectively. General
we are using debug for infrequent debug messages, trace for potentially frequent messages and
info for performance-related logging.
Attaching to a running process with gdb
```
$ sudo gdb
attach <PID>
set logging on
thread apply all bt
```
This will dump all the threads stack traces into gdb.txt
Benchmarking
---