Praxeswow / wowclsp

Automatically exported from code.google.com/p/wowclsp
0 stars 0 forks source link

new year problem while parsing #2

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
I have got a really big log file which contains tow year 2008 and 2009 logs
too, so the program try to delete 2009.12.27 dated file but ofcoz there is
nothing because this not corrent the correct one is 2008.12.27

Original issue reported on code.google.com by scr34m on 4 Jan 2009 at 1:12

GoogleCodeExporter commented 8 years ago
Patch for year problem attached but not this was the problem UI says "Split time
(minutes)" default 120 but the program use it as seconds at this line of code:
if (Convert.ToInt32(timediff.TotalSeconds) > 
Convert.ToInt32(edt_splittime.Text) ||
line_count == 0)
so i use (Convert.ToInt32(edt_splittime.Text) * 60) this one already in patch.

Original comment by scr34m on 4 Jan 2009 at 3:08

Attachments:

GoogleCodeExporter commented 8 years ago
The UI default filename format "yyyy.MM.dd_HHss" is wrong use "yyyy.MM.dd_HHmm"
instead because seconds can cause file permission problems when already created 
one
and opened, this was my problem also.

Tested it again, removed the *60 modification and worked fine.

Original comment by scr34m on 4 Jan 2009 at 3:21

GoogleCodeExporter commented 8 years ago
Proper icon for application :)

Original comment by scr34m on 4 Jan 2009 at 3:28

Attachments:

GoogleCodeExporter commented 8 years ago

Original comment by gehannf on 1 Feb 2009 at 5:08