2023-03-03 15:17:40 +08:00

10 lines
191 B
Dart

import 'dart:developer';
/// print full log
class Logger {
// Sample of abstract logging function
static void print(String text) {
log('** $text', name: 'flutter_openim_sdk');
}
}