(level="info")
| 118 | # Used to inject a newline into stderr if logging there, to clean up the output |
| 119 | # when it's intermixed with regular prints from other sources. |
| 120 | def newline(level="info"): |
| 121 | with _lock: |
| 122 | stderr.write(level, "\n") |
| 123 | |
| 124 | |
| 125 | def write(level, text, _to_files=all): |
nothing calls this directly
no test coverage detected
searching dependent graphs…