I wrote a logger class that emails me when there's an exception on my application, but I'd like to know what the model of device is that threw the exception. For example:
Logger.LogError(App.ApplicationName, Device.OS.ToString(), "Error getting passenger ancillary transactions!", Settings.CurrentUsername, ex.ToString());
Sends an email of the exception with the application's name and the fact that the device is "Android" or "iOS", but nothing more specific than that. In Visual Studio, it says which device I'm about to debug on (like "iPod Touch" or "LG LS991"). Is there a way to access this information? I can't find anything in the Xamarin documentation.