getPath static method

String getPath(
  1. LogOption option,
  2. Object object
)

log output path.

Implementation

static String getPath(LogOption option, Object object) {
  final String content =
      option.language == Language.en ? '   PATH: $object' : '路径: $object';
  return CLog.coloringMethod(option.colorTheme!, content);
}