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)
        ? log.log('\x1B[32m[CAMS INFO]\x1B[0m $message')
        : 0;