Skip to main content

class wandb.apis.public.ConsoleLogLine

A single line of a run’s captured console output.

Args

  • number:
  • timestamp:
  • level:
  • label:
  • content:

Attributes

  • number: Position of the line in the run’s console log, starting at 0.
  • timestamp: The time the line was captured, as a timezone-aware UTC datetime. None if the backend did not record a time for the line or sent one in an unexpected format.
  • level: The severity of the line: "error" for lines written to stderr, empty otherwise.
  • label: A label identifying the process that wrote the line when several processes write to the same run, as set by the x_label setting in shared mode. Empty for single-writer runs.
  • content: The text of the line.