From 9582313a4608bce4ff9bdccce021c4599537785d Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Thu, 15 Oct 2009 21:40:22 +0000 Subject: [PATCH] Dont long system, Get or ReportRunlevel calls --- PLC/Method.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.43.0