Skip to content

Commit

Permalink
Merge pull request #1406 from garberg/clean_old_debugging
Browse files Browse the repository at this point in the history
Removed old debugging stuff
  • Loading branch information
garberg authored Nov 19, 2024
2 parents 145fcf4 + 122efdd commit a528fc1
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions nipap/nipap/xmlrpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,6 @@ def smart_search_prefix(self, args):
"""

try:
self.logger.debug('Entering ssp')
res = self.nip.smart_search_prefix(
args.get('auth'),
args.get('query_string'),
Expand All @@ -699,10 +698,7 @@ def smart_search_prefix(self, args):
return res
except (AuthError, NipapError) as exc:
self.logger.debug(str(exc))
self.logger.exception('unhandled..', exc)
raise Fault(exc.error_code, str(exc))
except Exception as e:
self.logger.exception('unhandled..', e)


@requires_auth
Expand Down

0 comments on commit a528fc1

Please sign in to comment.