Add source id to error message

This commit is contained in:
Matt Nadareski
2016-03-28 20:18:37 -07:00
parent 26c7ad4fd1
commit 6157f0a870

View File

@@ -49,7 +49,7 @@ namespace WoD
int id = 0;
if (_sources != "" && Int32.TryParse(_sources, out id) && id <= 14)
{
_logger.Log("This source is import-only so a DAT cannot be created. We apologize for the inconvenience.");
_logger.Log("This source (" + id + ") is import-only so a DAT cannot be created. We apologize for the inconvenience.");
return false;
}