dj3500 / hightail

MIT License
271 stars 145 forks source link

Make Hightail a good tool for debugging #29

Open dj3500 opened 12 years ago

dj3500 commented 12 years ago

This is far-fetched and might not be possible to do / to do right. But I'm thinking about something along the lines of:

dj3500 commented 11 years ago

Currently, we're not displaying the standard error output anywhere to the user; we could at least do that. (Display it where? The table is wide as it is.)

AuroMun commented 9 years ago

image A simpler solution could be just to ignore any lines starting with "DBG", and print them as they are. The only problem is that Hightail takes in the output string by string, so debug statements with spaces would create a problem.

dj3500 commented 9 years ago

Actually, I'm wondering if it could be possible to display the cerr output of the program (don't use it for diffing, just for displaying), say in green. My vision is that it should be intertwined with the output of the program, just as it would be if displayed when run in the console. My first thought is that it would be hard, since we can't say which line "came first", but the console does manage to display it in the right order somehow, so maybe we could as well. I didn't research it (and whether it is possible in Java) though.

dj3500 commented 9 years ago

See also here http://codeforces.com/blog/entry/13141#comment-210682