Improvement:

- Shorten log when changing avatar
This commit is contained in:
Linloir 2022-10-23 10:34:59 +08:00
parent 23a0633623
commit c0fbd69421
No known key found for this signature in database
GPG Key ID: 58EEB209A0F2C366

View File

@ -1,7 +1,7 @@
/*
* @Author : Linloir
* @Date : 2022-10-06 15:44:16
* @LastEditTime : 2022-10-22 21:25:00
* @LastEditTime : 2022-10-23 10:33:58
* @Description :
*/
@ -57,6 +57,9 @@ void main(List<String> arguments) async {
if(request.requestType == RequestType.sendMessage) {
print('[L] Message: (Message body)');
}
else if(request.requestType == RequestType.modifyProfile) {
print('[L] Profile: (Profile body)');
}
else {
print('[L] Message: ${request.toJSON}');
}