Skip to content

Commit

Permalink
symbols_jar: make monitor() use up to $arg8
Browse files Browse the repository at this point in the history
  • Loading branch information
doronz88 committed Jul 22, 2024
1 parent fcab630 commit 3c8e86c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions hilda/symbols_jar.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ def monitor(self, **args):
if self.__dict__['_client'].configs.objc_verbose_monitor:
arg_count = name.count(':')
if arg_count > 0:
arg_count = min(6, arg_count)
options['expr'] = {f'$arg{i + 3}': 'po' for i in range(arg_count)}
name = options.get('name', name)
address.monitor(name=name, **options)
Expand Down

0 comments on commit 3c8e86c

Please sign in to comment.