info function
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;
Add an information messages to the system log.
void info(String message) =>
(Settings().debugLevel.index >= DebugLevel.info.index)
? log.log('\x1B[32m[CAMS INFO]\x1B[0m $message')
: 0;