tracing: Add help strings for some of the trace flags
This commit is contained in:
@@ -81,16 +81,18 @@ if env['USE_MYSQL']:
|
||||
Source('mysql.cc')
|
||||
Source('stats/mysql.cc')
|
||||
|
||||
TraceFlag('Annotate')
|
||||
TraceFlag('GDBAcc')
|
||||
TraceFlag('GDBExtra')
|
||||
TraceFlag('GDBMisc')
|
||||
TraceFlag('GDBRead')
|
||||
TraceFlag('GDBRecv')
|
||||
TraceFlag('GDBSend')
|
||||
TraceFlag('GDBWrite')
|
||||
TraceFlag('SQL')
|
||||
TraceFlag('StatEvents')
|
||||
TraceFlag('Annotate', "State machine annotation debugging")
|
||||
TraceFlag('GDBAcc', "Remote debugger accesses")
|
||||
TraceFlag('GDBExtra', "Dump extra information on reads and writes")
|
||||
TraceFlag('GDBMisc', "Breakpoints, traps, watchpoints, etc.")
|
||||
TraceFlag('GDBRead', "Reads to the remote address space")
|
||||
TraceFlag('GDBRecv', "Messages received from the remote application")
|
||||
TraceFlag('GDBSend', "Messages sent to the remote application")
|
||||
TraceFlag('GDBWrite', "Writes to the remote address space")
|
||||
TraceFlag('SQL', "SQL queries sent to the server")
|
||||
TraceFlag('StatEvents', "Statistics event tracking")
|
||||
|
||||
CompoundFlag('GDBAll', [ 'GDBMisc', 'GDBAcc', 'GDBRead', 'GDBWrite', 'GDBSend',
|
||||
'GDBRecv', 'GDBExtra' ])
|
||||
CompoundFlag('GDBAll',
|
||||
[ 'GDBMisc', 'GDBAcc', 'GDBRead', 'GDBWrite', 'GDBSend', 'GDBRecv',
|
||||
'GDBExtra' ],
|
||||
desc="All Remote debugging flags")
|
||||
|
||||
Reference in New Issue
Block a user