Package PyFoam :: Package LogAnalysis :: Module EchoLineAnalyzer
[hide private]
[frames] | no frames]

Source Code for Module PyFoam.LogAnalysis.EchoLineAnalyzer

 1  #  ICE Revision: $Id$  
 2  """Echos a line""" 
 3   
 4  from LogLineAnalyzer import LogLineAnalyzer 
 5   
6 -class EchoLineAnalyzer(LogLineAnalyzer):
7 """Test implementation. Simply echos every line it gets""" 8
9 - def __init__(self):
11
12 - def doAnalysis(self,line):
13 print "<"+self.parent.getTime()+">"+line+"<"
14