You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
std::cerr<<"Verbosity is set to \'"<<verbosity<<"\'\n";
std::cerr<<" ***** \n";
}
fp.clear();
break;
}
}
If verbose is not the first key in the config file, lgar will likely not correctly interpret a configuration file. This is because the code looks for the verbose key in all lines of the config and never seeks back to the beginning of the file before parsing the config file for parameters.
The text was updated successfully, but these errors were encountered:
LGAR-C/src/lgar.cxx
Lines 184 to 206 in 567adc7
If
verbose
is not the first key in the config file,lgar
will likely not correctly interpret a configuration file. This is because the code looks for theverbose
key in all lines of the config and never seeks back to the beginning of the file before parsing the config file for parameters.The text was updated successfully, but these errors were encountered: