By the way, I found an annoying thing which may grow html files rapidly.
When people use Plus! formatting tags, if they write like [b]hel[/b][b]lo[/b], then in log file it looks like
code:
<span font-weight:bold>hel</span><<span font-weight:bold>lo</span>
As you see, there are two bold information when not needed. I know, noone inserts tags like that. However the important thing is if user give a gradient effect to his messages with other formatting like bold or italic, then these bold and italic informations are written in html files for each letter.For example, if user sends a message like[b][c=4]Hello my contact[/c=8][/b] then the result in html file is
code:
<span font-weight:bold; color=fffff> H </span>
<span font-weight:bold; color=ffff00> e </span>
...
..
.
<span font-weight:bold; color=fcfc32> t </span>
This problems arises in nicknames mostly, because people can give formats other than gradient effect to their messages from original Messenger's font option (and this will not cause this duplicate entry problem for each letter) but for display names if people make their name bold&italic&underlined and give a gradient color, then for each letter, the bold&italic&underlined infos are written seperately. And this is unnecessary I think. If possible, please optimize logging of texts formatted like that.