add missing file name to message

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@7048 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 702ff22ef388e95065acafa736f5397758e0a216
Former-commit-id: cbaf50cdd98a4ef621622e8d8e9ce9661e81cbf8
This commit is contained in:
iobyte 2020-05-16 05:40:13 +00:00
parent d0a0c61e25
commit bda514f0c5
2 changed files with 2 additions and 2 deletions

View file

@ -48,7 +48,7 @@ void MuFactors::read(const std::string& datadir, const std::string& trackname)
mSect.push_back(sect); mSect.push_back(sect);
mMinMuFactor = 1.0; mMinMuFactor = 1.0;
printMuFactors(); printMuFactors();
std::cout << "readMuFactors(): no data file found, using default factor" << std::endl; std::cout << "readMuFactors(): data file " << datFile << " not found, using default factor" << std::endl;
} }
} }

View file

@ -45,7 +45,7 @@ void PathMargins::read(const std::string &datafile)
sect.left = 1.2; sect.left = 1.2;
sect.right = 1.2; sect.right = 1.2;
mPathMargin.push_back(sect); mPathMargin.push_back(sect);
std::cout << "readPathMargins(): no data file found, using default margins" << std::endl; std::cout << "readPathMargins(): data file " << datafile << " not found, using default margins" << std::endl;
} }
} }