mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 00:53:57 -07:00
updated exception logging.
This commit is contained in:
parent
736cd90b94
commit
1585234055
2 changed files with 2 additions and 7 deletions
|
@ -65,8 +65,8 @@ namespace Marr.Data.Mapping
|
|||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
string msg = string.Format("The DataMapper was unable to load the following field: '{0}'.",
|
||||
dataMap.ColumnInfo.Name);
|
||||
string msg = string.Format("The DataMapper was unable to load the following field: '{0}'. {1}",
|
||||
dataMap.ColumnInfo.Name, ex.Message);
|
||||
|
||||
throw new DataMappingException(msg, ex);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue