Write the sequence of args, with no separators, to the console and output files (if you've configured an output file).
(*args, level=INFO)
| 245 | |
| 246 | |
| 247 | def log(*args, level=INFO): |
| 248 | """ |
| 249 | Write the sequence of args, with no separators, to the console and output files (if you've configured an output file). |
| 250 | """ |
| 251 | get_current().log(*args, level=level) |
| 252 | |
| 253 | |
| 254 | def debug(*args): |