1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-02-15 02:20:09 +00:00

Print args

This commit is contained in:
Anthony Arnold 2015-04-30 23:36:36 +10:00
parent 9a3980c8d9
commit b059d5a648

View File

@ -77,6 +77,11 @@ OsmosdrSignalSource::OsmosdrSignalSource(ConfigurationInterface* configuration,
// 1. Make the driver instance
try
{
if (!osmosdr_args_.empty())
{
std::cout << "OsmoSdr arguments: " << osmosdr_args_ << std::endl;
LOG(INFO) << "OsmoSdr arguments: " << osmosdr_args_;
}
osmosdr_source_ = osmosdr::source::make(osmosdr_args_);
}
catch( boost::exception & e )