15 lines
439 B
Dart
15 lines
439 B
Dart
/// 链路日志统一时间戳工具
|
|
///
|
|
/// 用于打印"什么时间做了什么"的全链路日志,格式:[HH:mm:ss.SSS]
|
|
class LogTime {
|
|
LogTime._();
|
|
|
|
static String now() {
|
|
final now = DateTime.now();
|
|
return '[${now.hour.toString().padLeft(2, '0')}:'
|
|
'${now.minute.toString().padLeft(2, '0')}:'
|
|
'${now.second.toString().padLeft(2, '0')}.'
|
|
'${now.millisecond.toString().padLeft(3, '0')}]';
|
|
}
|
|
}
|