diff --git a/src/pathfinder.cpp b/src/pathfinder.cpp index 3e8a73ac2..f1a2c3890 100644 --- a/src/pathfinder.cpp +++ b/src/pathfinder.cpp @@ -263,13 +263,13 @@ std::vector pathfinder::get_Path(ServerEnvironment* env, path_gridnode& endpos = getIndexElement(EndIndex); if (!startpos.valid) { - ERROR_TARGET << "invalid startpos" << + ERROR_TARGET << "pathfinder:invalid startpos " << "Index: " << PPOS(StartIndex) << "Realpos: " << PPOS(getRealPos(StartIndex)) << std::endl; return retval; } if (!endpos.valid) { - ERROR_TARGET << "invalid stoppos" << + ERROR_TARGET << "pathfinder:invalid stoppos " << "Index: " << PPOS(EndIndex) << "Realpos: " << PPOS(getRealPos(EndIndex)) << std::endl; return retval;