Logs msg argument at warning level
(self, msg)
| 205 | logger.debug(msg) |
| 206 | |
| 207 | def warn(self, msg): |
| 208 | """ |
| 209 | Logs msg argument at warning level |
| 210 | """ |
| 211 | warnings.warn("warn() function is deprecated. Please use logging library instead.", DeprecationWarning) |
| 212 | logger.warning(msg) |
| 213 | |
| 214 | def error(self, msg): |
| 215 | """ |