MCPcopy Create free account
hub / github.com/Open-Bee/DataStudio / debug

Method debug

datastudio/utils/logging.py:231–236  ·  view source on GitHub ↗

Log debug message.

(self, msg: Any, to_wandb: bool = False, **kwargs)

Source from the content-addressed store, hash-verified

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 """

Callers 1

test_debugMethod · 0.80

Calls 2

_format_messageMethod · 0.95
_log_to_wandbMethod · 0.95

Tested by 1

test_debugMethod · 0.64