From 3c8c8d3ea30ab069447f54881fa23b1d50e0a6a1 Mon Sep 17 00:00:00 2001
From: Tony Mack <tmack@cs.princeton.edu>
Date: Mon, 20 Aug 2007 19:11:08 +0000
Subject: [PATCH] - limit what we log by default

---
 PLC/Method.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/PLC/Method.py b/PLC/Method.py
index 5413dc44..36d345c9 100644
--- a/PLC/Method.py
+++ b/PLC/Method.py
@@ -4,7 +4,7 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id: Method.py,v 1.26 2007/05/16 18:54:12 tmack Exp $
+# $Id: Method.py,v 1.27 2007/05/16 18:56:03 tmack Exp $
 #
 
 import xmlrpclib
@@ -92,7 +92,7 @@ class Method:
 	    result = self.call(*args, **kwds)
 	    runtime = time.time() - start
 
-            if self.api.config.PLC_API_DEBUG or hasattr(self, 'message'):
+            if self.api.config.PLC_API_DEBUG: #or hasattr(self, 'message'):
 		self.log(0, runtime, *args)
 	    	
 	    return result
-- 
2.47.0