Log debug message.
(self, msg: Any, to_wandb: bool = False, **kwargs)
| 229 | pass |
| 230 | |
| 231 | def debug(self, msg: Any, to_wandb: bool = False, **kwargs) -> None: |
| 232 | """Log debug message.""" |
| 233 | formatted = self._format_message(msg, **kwargs) |
| 234 | self._logger.debug(formatted) |
| 235 | if to_wandb and self._wandb_enabled: |
| 236 | self._log_to_wandb({"debug": formatted}) |
| 237 | |
| 238 | def info(self, msg: Any, to_wandb: bool = False, **kwargs) -> None: |
| 239 | """ |