runFormatTest static method

void runFormatTest()

use to quickly test all flog formats and colors

Implementation

static void runFormatTest() {
  flogError('this is the ERROR flog w/o stack track');
  flogError('this is the ERROR flog w/ stack track', StackTrace.current);
  flogFatal('this is the FATAL flog w/o stack track');
  flogFatal('this is the FATAL flog w/ stack track', StackTrace.current);
  flogRequest('this is the REQUEST flog');
  flogImportant('this is the IMPORTANT flog');
  flogInfo('this is the INFO flog');
  flogState('this is the STATE flog');
  flogNav('this is the NAV flog');
}