Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | # -*- coding: utf-8 -*- |
||
2 | |||
3 | from bika.lims import logger |
||
4 | |||
5 | |||
6 | def RemarksAddedEventHandler(event): |
||
7 | """New Remarks Added |
||
8 | """ |
||
9 | context = event.context |
||
10 | history = event.history |
||
11 | logger.info("New Remarks added for {}: {}" |
||
12 | .format(repr(context), history[0])) |
||
13 |