Commit 45f79276 by rfkelly0

remove debugging prints in expose.fuse

parent 54cc60af
...@@ -81,13 +81,7 @@ def handle_fs_errors(func): ...@@ -81,13 +81,7 @@ def handle_fs_errors(func):
func = convert_fs_errors(func) func = convert_fs_errors(func)
@wraps(func) @wraps(func)
def wrapper(*args,**kwds): def wrapper(*args,**kwds):
print func.__name__, args[1:]
try:
res = func(*args,**kwds) res = func(*args,**kwds)
except Exception, e:
print func.__name__, args[1:]
print e
raise
if res is None: if res is None:
return 0 return 0
return res return res
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment