(*args, color=Fore.GREEN, sep=' ', end='\n', file=sys.stdout, **kvargs)
| 71 | return fmted |
| 72 | |
| 73 | def 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 | |
| 79 | def 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) |