MCPcopy Index your code
hub / github.com/AutoRecon/AutoRecon / debug

Function debug

autorecon/io.py:73–77  ·  view source on GitHub ↗
(*args, color=Fore.GREEN, sep=' ', end='\n', file=sys.stdout, **kvargs)

Source from the content-addressed store, hash-verified

71 return fmted
72
73def debug(*args, color=Fore.GREEN, sep=' ', end='\n', file=sys.stdout, **kvargs):
74 if config['verbose'] >= 2:
75 if config['accessible']:
76 args = ('Debug:',) + args
77 cprint(*args, color=color, char='-', sep=sep, end=end, file=file, frame_index=2, **kvargs)
78
79def info(*args, sep=' ', end='\n', file=sys.stdout, **kvargs):
80 cprint(*args, color=Fore.BLUE, char='*', sep=sep, end=end, file=file, frame_index=2, **kvargs)

Callers

nothing calls this directly

Calls 1

cprintFunction · 0.85

Tested by

no test coverage detected