MCPcopy
hub / github.com/DLR-RM/stable-baselines3 / error

Method error

stable_baselines3/common/logger.py:592–600  ·  view source on GitHub ↗

Write the sequence of args, with no separators, to the console and output files (if you've configured an output file). Using the ERROR level. :param args: log the arguments

(self, *args)

Source from the content-addressed store, hash-verified

590 self.log(*args, level=WARN)
591
592 def error(self, *args) -> None:
593 """
594 Write the sequence of args, with no separators,
595 to the console and output files (if you've configured an output file).
596 Using the ERROR level.
597
598 :param args: log the arguments
599 """
600 self.log(*args, level=ERROR)
601
602 # Configuration
603 # ----------------------------------------

Callers 1

test_mainFunction · 0.80

Calls 1

logMethod · 0.95

Tested by 1

test_mainFunction · 0.64