UpdateUserInfo()添加异常捕获

croire 3 years ago
parent 59c75e3fdd
commit 73b2fa9739

@ -238,6 +238,8 @@ namespace DownKyi.ViewModels
return; return;
} }
try
{
await Task.Run(new Action(() => await Task.Run(new Action(() =>
{ {
// 获取用户信息 // 获取用户信息
@ -287,6 +289,12 @@ namespace DownKyi.ViewModels
})); }));
})); }));
} }
catch (Exception e)
{
Core.Utils.Debugging.Console.PrintLine("UpdateUserInfo()发生异常: {0}", e);
LogManager.Error(Tag, e);
}
}
#endregion #endregion

Loading…
Cancel
Save