logInfo static method

void logInfo(
  1. String key,
  2. Object info
)

Log info.

Implementation

static void logInfo(String key, Object info) {
  _forAllStrategies((strategy) => strategy.logInfo(key, info));
}