about summary refs log tree commit diff stats
path: root/090trace_browser.cc
Commit message (Collapse)AuthorAgeFilesLines
* 2773 - switch to 'int'Kartik K. Agaram2016-03-131-19/+19
| | | | This should eradicate the issue of 2771.
* 2680Kartik K. Agaram2016-02-201-7/+7
| | | | Delete all the [] that has crept in since 2377 in November.
* 2625Kartik K. Agaram2015-12-151-4/+1
|
* 2621Kartik K. Agaram2015-12-081-2/+11
|
* 2619Kartik K. Agaram2015-12-071-1/+1
|
* 2609 - run $browse-trace on old runsKartik K. Agaram2015-11-291-0/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is long overdue. Let's see if it gets me using traces more during debugging. Though perhaps I'm being too persnickety. These are all valid ways to debug programs: a) print directly to screen b) log, and then dump the log on some condition c) temporarily print selected log statements directly to screen d) log, and then browse the log using the zoom interface For a) to work we need to normally keep prints empty. For b) to work the log needs to be of some manageable size, where it's tractable to find interesting features. d) is the ultimate weapon, but might be slow because it's interactive c) seems like the ugly case. Should I be trying to avoid it altogether? Let's try, and see if d) is useable when we want to do c). For simple cases it's still totally acceptable to just print. If the prints get too complex to parse, then we move to the zoom interface. Hopefully it'll be easier because we have to spend less time getting the prints just so. (Independent of all this, often the best way to make a log manageable so any of the approaches works: distill the bad behavior down to a test. But that leads to chicken-and-egg situations where you need to first understand before you can distill.)
* 2430 - make room for more transformsKartik K. Agaram2015-11-131-0/+213