Sets the logging verbosity to ``debug`` which displays much more information, including logging each byte sent by tubes.
(x)
| 127 | LOG_LEVEL('error') |
| 128 | |
| 129 | def DEBUG(x): |
| 130 | """Sets the logging verbosity to ``debug`` which displays much |
| 131 | more information, including logging each byte sent by tubes.""" |
| 132 | LOG_LEVEL('debug') |
| 133 | |
| 134 | def NOTERM(v): |
| 135 | """Disables pretty terminal settings and animations.""" |
nothing calls this directly
no test coverage detected