customConsoleLogFunction property

CustomConsoleLogFunction? customConsoleLogFunction
getter/setter pair

Control what Datadog outputs to the debug console. Uses simpleConsolePrint by default, which prints logs all logs to the console in the form "level message".

You can filter by level using simpleConsolePrintForLevel.

To disable console log output, set this option to null

Implementation

CustomConsoleLogFunction? customConsoleLogFunction = simpleConsolePrint;