w static method

dynamic w(
  1. String msg, {
  2. String tag = 'fplayer',
})

log msg with FLogLevel.Warn level

Implementation

static w(String msg, {String tag = 'fplayer'}) {
  log(FLogLevel.Warn, msg, tag);
}