From 253f60663a831cbe5416707805d5f4769dbb3fff Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Fri, 16 Oct 2009 00:34:48 +0000 Subject: [PATCH] dont log system calls --- PLC/Method.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PLC/Method.py b/PLC/Method.py index a422b96..dfe9f1a 100644 --- a/PLC/Method.py +++ b/PLC/Method.py @@ -128,6 +128,8 @@ class Method (object): #if self.name.startswith('system') or self.name.startswith('Get'): # return False # Do not log ReportRunlevel + if self.name.startswith('system'): + return False if self.name.startswith('ReportRunlevel'): return False -- 2.43.0