info function

void info(
  1. String message
)

Add an information messages to the system log.

Implementation

void info(String message) =>
    (Settings().debugLevel.index >= DebugLevel.info.index)
    ? debugPrint('\x1B[32m[CAMS INFO]\x1B[0m $message')
    : 0;