13 lines
347 B
Dart
13 lines
347 B
Dart
import 'package:tencent_cloud_chat_sdk/tencent_im_sdk_plugin.dart';
|
|
import 'package:tencent_cloud_chat_uikit/ui/utils/platform.dart';
|
|
|
|
final outputLogger = TencentCloudChatLog();
|
|
|
|
class TencentCloudChatLog{
|
|
void i(String text){
|
|
if(!PlatformUtils().isWeb){
|
|
TencentImSDKPlugin.v2TIMManager
|
|
.uikitTrace(trace: text);
|
|
}
|
|
}
|
|
} |