Changes between Version 12 and Version 13 of Debugging
- Timestamp:
- 03/04/13 11:01:23 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Debugging
v12 v13 6 6 * [/wiki/Keyboard Keyboard] 7 7 * [/wiki/WindowRefresh Window Refresh] 8 9 == First Things == 10 Always try to narrow it down as much as possible, by turning off as many features as possible (clipboard, etc) and trying various encodings. 11 8 12 9 13 == Via Logging == … … 57 61 }}} 58 62 The packet type is the first thing in each packet and it is a simple string which makes it easy to observe traffic. 63 With version 0.9 onwards, it is best to set {{{XPRA_USE_ALIASES=0}}} to ensure that the packets will use plain-text headers rather than numeric aliases. 59 64 60 65 == GDB == … … 101 106 === In python code === 102 107 Needs documenting, [http://mg.pov.lt/objgraph/ objgraph] is a good place to start. 103