12 lines
355 B
Dart
12 lines
355 B
Dart
import 'package:logger/logger.dart';
|
|
|
|
// 全局日志实例,在整个项目中共享
|
|
final Logger logger = Logger(
|
|
printer: PrettyPrinter(
|
|
methodCount: 1,
|
|
colors: true,
|
|
dateTimeFormat: DateTimeFormat.dateAndTime,
|
|
),
|
|
// 可选:配置输出到文件(需配合文件操作库)
|
|
// output: FileOutput(file: File('logs/app.log')),
|
|
); |