mirror of
https://github.com/wanghongenpin/proxypin.git
synced 2026-03-19 05:19:47 +08:00
12 lines
273 B
Dart
12 lines
273 B
Dart
import 'package:logger/logger.dart';
|
|
|
|
final logger = Logger(
|
|
printer: PrettyPrinter(
|
|
methodCount: 0,
|
|
errorMethodCount: 10,
|
|
lineLength: 120,
|
|
colors: true,
|
|
printEmojis: false,
|
|
excludeBox: {Level.info: true, Level.debug: true},
|
|
));
|