println static method

void println(
  1. String obj
)

调试打印

Implementation

static void println(String obj) {
  if (isOpenLog) debugPrint(obj);
}