(self, msg, *args, **kwargs)
| 1925 | self.log(WARNING, msg, *args, **kwargs) |
| 1926 | |
| 1927 | def warn(self, msg, *args, **kwargs): |
| 1928 | warnings.warn("The 'warn' method is deprecated, " |
| 1929 | "use 'warning' instead", DeprecationWarning, 2) |
| 1930 | self.warning(msg, *args, **kwargs) |
| 1931 | |
| 1932 | def error(self, msg, *args, **kwargs): |
| 1933 | """ |