Do not print errors when searching for usable configuration file
parent
b485fac33e
commit
6ec447a1aa
|
@ -145,11 +145,7 @@ public:
|
||||||
{
|
{
|
||||||
std::ifstream is(filename);
|
std::ifstream is(filename);
|
||||||
if(is.good() == false)
|
if(is.good() == false)
|
||||||
{
|
|
||||||
errorstream<<"Error opening configuration file \""
|
|
||||||
<<filename<<"\""<<std::endl;
|
|
||||||
return false;
|
return false;
|
||||||
}
|
|
||||||
|
|
||||||
infostream<<"Parsing configuration file: \""
|
infostream<<"Parsing configuration file: \""
|
||||||
<<filename<<"\""<<std::endl;
|
<<filename<<"\""<<std::endl;
|
||||||
|
|
Loading…
Reference in New Issue