We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdc8d6b commit 2d4a1d1Copy full SHA for 2d4a1d1
1 file changed
src/Frog.cxx
@@ -150,6 +150,10 @@ bool parse_args( TiCC::CL_Options& Opts,
150
Opts.extract( 'c', configFileName );
151
if ( configuration.fill( configFileName ) ){
152
*Log(theErrLog) << "config read from: " << configFileName << endl;
153
+ string vers = configuration.lookUp( "version" );
154
+ if ( !vers.empty() ){
155
+ *Log(theErrLog) << "configuration version = " << vers << endl;
156
+ }
157
}
158
else {
159
cerr << "failed to read configuration from '" << configFileName << "' !!" << endl;
0 commit comments