in reply to Parsing Log File Help!

Taking a guess, I think the first part of your program can be replaced by:

foreach (<LOGFILE>) { push @logg, split; }
as the regular expression is not good. But that does assume whitespace-delimited log entries. Could you post a sample of the logfile?

Update: Changed the assignment to a push. Thanks Enlil.