MCPcopy Create free account
hub / github.com/FastLED/FastLED / print_blue

Method print_blue

ci/util/color_output.py:67–73  ·  view source on GitHub ↗

Print message in blue color.

(self, message: str)

Source from the content-addressed store, hash-verified

65 self._fallback_print(msg, "❌ ")
66
67 def print_blue(self, message: str) -> None:
68 """Print message in blue color."""
69 msg = f"{get_elapsed_str()} {message}"
70 if self.console:
71 self.console.print(msg, style="blue")
72 else:
73 self._fallback_print(msg, "ℹ️ ")
74
75 def print_cache_hit(self, message: str) -> None:
76 """Print cache hit message in green with appropriate formatting."""

Callers 1

print_blueFunction · 0.80

Calls 3

_fallback_printMethod · 0.95
get_elapsed_strFunction · 0.85
printMethod · 0.45

Tested by

no test coverage detected