Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/1585234055b7603fcbe4c3bedc65118d09378aea?style=unified&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

updated exception logging.

pull/2/head
Keivan Beigi 12 years ago
parent 736cd90b94
commit 1585234055

@ -255,11 +255,6 @@ namespace Exceptron.Client
var fileName = frame.GetFileName();
if (!string.IsNullOrWhiteSpace(fileName))
{
fileName = new FileInfo(fileName).Name;
}
var currentFrame = new Frame
{
i = index,

@ -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…
Cancel
Save