Skip to content

Commit

Permalink
make verbose logging into debug
Browse files Browse the repository at this point in the history
Signed-off-by: David Korczynski <david@adalogics.com>
  • Loading branch information
DavidKorczynski committed Jan 25, 2025
1 parent a058d82 commit cdf2223
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/fuzz_introspector/frontends/frontend_cpp.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,11 +200,11 @@ def _extract_information(self):

# Handle the full name
# Extract the scope that the function is defined in
logger.info('Iterating parents')
logger.debug('Iterating parents')
tmp_root = self.root
full_name = ''
while True:
logger.info('step')
logger.debug('step')
new_parent = tmp_root.parent
if new_parent is None:
break
Expand Down Expand Up @@ -270,7 +270,7 @@ def _extract_information(self):
# full_name = self.sig
logger.debug('Full function name: %s', full_name)
self.name = full_name
logger.info('Done walking')
logger.debug('Done walking')

# Handles class or namespace in the function name
if '::' in self.name:
Expand Down

0 comments on commit cdf2223

Please sign in to comment.