* tried to put some sense in the way things get logged, at least on server-side for now
[sfa.git] / sfa / methods / Update.py
index de9dbb0..d36ea36 100644 (file)
@@ -5,7 +5,6 @@ import time
 from sfa.util.faults import *
 from sfa.util.method import Method
 from sfa.util.parameter import Parameter, Mixed
-from sfa.util.debug import log
 from sfa.trust.credential import Credential
 
 class Update(Method):
@@ -23,10 +22,8 @@ class Update(Method):
     interfaces = ['registry']
     
     accepts = [
-        Parameter(str, "Credential string"),
         Parameter(dict, "Record dictionary to be updated"),
-        Mixed(Parameter(str, "Human readable name of the original caller"),
-              Parameter(None, "Origin hrn not specified"))
+        Parameter(str, "Credential string"),
         ]
 
     returns = Parameter(int, "1 if successful")