You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error handling needs to be improved. Right now there's several places where functions can return a .Err result and leave it unhandled, crashing the app. There's also no way for it to log additional info to the application using it.
Add logging event so RfgTools can log errors and information and apps that use it can add an event handler to pass them through their own logging system.
Go through code and make sure all functions that return a Result<> type are handling the error case. Change the functions to return Result<> themselves if necessary. Could use the Try!() mixin to simplify the code in that case.
The text was updated successfully, but these errors were encountered:
Error handling needs to be improved. Right now there's several places where functions can return a .Err result and leave it unhandled, crashing the app. There's also no way for it to log additional info to the application using it.
The text was updated successfully, but these errors were encountered: