From: Tony Mack Date: Thu, 15 Oct 2009 21:40:22 +0000 (+0000) Subject: Dont long system, Get or ReportRunlevel calls X-Git-Tag: PLCAPI-4.3-29~7 X-Git-Url: http://git.onelab.eu/?p=plcapi.git;a=commitdiff_plain;h=9582313a4608bce4ff9bdccce021c4599537785d Dont long system, Get or ReportRunlevel calls --- diff --git a/PLC/Method.py b/PLC/Method.py index 942549d..52c6b20 100644 --- a/PLC/Method.py +++ b/PLC/Method.py @@ -125,8 +125,8 @@ class Method (object): """ # Do not log system or Get calls - #if self.name.startswith('system') or self.name.startswith('Get'): - # return False + if self.name.startswith('system') or self.name.startswith('Get') or self.name.startswith('ReportRunlevel') : + return False # Create a new event event = Event(self.api)