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

Function println

src/fl/stl/cstdio.cpp.hpp:94–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

92}
93
94void println(const char* str) {
95 if (!str) return;
96 // Check global log level - if NONE, suppress all output
97 if (gLogLevel == static_cast<u8>(LogLevel::FL_LOG_LEVEL_NONE)) return;
98
99#ifdef FASTLED_TESTING
100 // Check for injected handler first
101 if (get_println_handler()) {
102 get_println_handler()(str);
103 return;
104 }
105#endif
106
107 // Delegate to platform implementation
108 platforms::println(str);
109}
110
111int available() {
112#ifdef FASTLED_TESTING

Callers 10

printlnMethod · 0.50
log.cpp.hppFile · 0.50
flushMethod · 0.50
flushNMethod · 0.50
printlnMethod · 0.50
run_benchmarkFunction · 0.50
run_benchmark_blur_onlyFunction · 0.50
blur.cppFile · 0.50
printJsonRawFunction · 0.50
printStreamRawFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected