mirror of
https://github.com/WuKongIM/WuKongIMFlutterSDK
synced 2025-05-30 07:27:25 +00:00
17 lines
270 B
Dart
17 lines
270 B
Dart
class Logs {
|
|
static debug(Object msg) {
|
|
// ignore: avoid_print
|
|
print("debug:$msg");
|
|
}
|
|
|
|
static info(Object msg) {
|
|
// ignore: avoid_print
|
|
print("info:$msg");
|
|
}
|
|
|
|
static error(Object msg) {
|
|
// ignore: avoid_print
|
|
print("error:$msg");
|
|
}
|
|
}
|