Display text to console, formatted for nxc
(self, msg, *args, **kwargs)
| 130 | |
| 131 | @no_debug |
| 132 | def display(self, msg, *args, **kwargs): |
| 133 | """Display text to console, formatted for nxc""" |
| 134 | msg, kwargs = self.format(f"{colored('[*]', 'blue', attrs=['bold'])} {msg}", kwargs) |
| 135 | text = Text.from_ansi(msg) |
| 136 | nxc_console.print(text, *args, **kwargs) |
| 137 | self.log_console_to_file(text, *args, **kwargs) |
| 138 | |
| 139 | @no_debug |
| 140 | def success(self, msg, color="green", *args, **kwargs): |
no test coverage detected