Logs - Printable Version -Shoutbox (https://shoutbox.menthix.net) +-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58) +--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4) +---- Forum: WLM Plus! Help (/forumdisplay.php?fid=12) +----- Thread: Logs (/showthread.php?tid=40360) Logs by bws on 03-17-2005 at 04:29 PM
I was eager to analyze my logs and made a little python script to do so. The problem that I encountered is that the msgplus log format can be quite ambigious depending on the extra data added. RE: Logs by CookieRevised on 03-17-2005 at 08:11 PM
quote:There are some things to be carefull with, but it is quite possible to make a perfect analyzer or viewer. Nothing a good programmer can't do.... quote:That would defeat the whole purpose of the Messenger Plus! log feature. It is in text because that is human readable... quote:Take a look at "Messenger Plus! Log Viewer v0.21 released!". quote:not realy, you still would have the same 'problems'. It doesn't matter if it is binary or text, the only difference would be the initial reading of a line (and that's even easier in text). In fact textfiles can be approached as binary files also. But what you probably mean is storing 'identifiers' within the text to identify lines (is it recieved text, is it send text, is it a status message, etc...). But you don't need a 'binary' file for that, it can easly be done in a pure text file also. The benefit would be that it would be easier to program a reader. But the big disadvantage would be that it will be hard/confusing for humans to read the files. And the later is why the logs are in text format in the first place, so this will not be changed... (however, storing the logs as html is on the very long to-do list) But, you could also use the XML format of MSN Messenger itself if you wish though. It has those 'identifiers'... |