Feature add timestamp to turns in session log

in net.sourceforge.kolmafia.request.AdventureRequest.java
in method registerEncounter(GenericRequest)

you'll find the line
RequestLogger.updateSessionLog( "Encounter: " + encounter );

I would suggest immediately after that, adding the following:
RequestLogger.updateSessionLog( "Timestamp: " + new java.util.Date());

It might mess up parsers that have been built already, but this is a very useful feature to have. You could even add it before the Encounter text if you wanted. That might mess up fewer parsers.

Why is this an awesome feature? It could help to reconcile how much time you're actually spending per day / per turn. It could also help reconcile logs that have been split apart. If two logs are concatenated together, and you see that the timestamp between two turns that are right next to each other is actually 2 days, that'll clue you in to the fact that something funny happened.

I very much so support this feature request.
 

heeheehee

Developer
Staff member
After this request is implemented, I expect to see a chart of how real life time changes as you acquire more skills / familiars, RT, 'kay?
 
Top