- test to see if we get better info on windows for unknown errors

This commit is contained in:
Mark Vejvoda
2013-01-18 01:12:32 +00:00
parent 51a0b50bc2
commit 790400938d
3 changed files with 5 additions and 4 deletions

View File

@@ -620,7 +620,7 @@ string LuaScript::errorToString(int errorCode) {
error+= "Error while running the error handler";
break;
default:
error+= "Unknown error";
error+= "Unknown LUA error" + intToStr(errorCode);
break;
}

View File

@@ -212,7 +212,7 @@ Mutex UPNP_Tools::mutexUPNP;
else
{
// Didn't find error in list, so make up a generic one
outs << "unknown error";
outs << "unknown socket error";
}
outs << " (" << Target.nID << ")";