Open crantila opened 9 years ago
For what it's worth, I moved on to pdb in lieu of print statements.
You started using a debugger so you could monitor your program's progress? I'm sure you're using it for other things too (like actual debugging) but for monitoring progress it's overkill, and it suggests this feature really is necessary.
I'm closing this because I don't think anyone cares.
Are you joining us back up?
Inspired by issue #243.
Currently, VIS doesn't do any logging, and doesn't provide any feedback on its progress, or what it's doing. Proper logging would be easy enough to implement, especially in
IndexedPiece
and theIndexer
superclass, and it could be really useful/interesting.For me at least, whenever I write an analysis script, I end up putting in
print()
calls all over the place, and I think @alexandermorgan does the same. In this case, we wouldn't have to---the log could be printed out by default. And for when VIS is running on a server, we could have the log point to an actual file.