Class object to store a log group with the same template
| 15 | |
| 16 | |
| 17 | class LCSObject: |
| 18 | """ Class object to store a log group with the same template |
| 19 | """ |
| 20 | def __init__(self, logTemplate='', logIDL=[]): |
| 21 | self.logTemplate = logTemplate |
| 22 | self.logIDL = logIDL |
| 23 | |
| 24 | |
| 25 | class Node: |