pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-trx/+/41889?usp=email )
Change subject: Drop logging of stderr loglvel at startup ......................................................................
Drop logging of stderr loglvel at startup
Nowadays there's far better ways to figure out logging, like checking through VTY. For instnace, that loglevel is the general log level of the stderr target, but says nothing about specific categories, or other log targets, etc. Furthermore, this way we get rid of only access to struct log_target from libosmocore, which should be private.
Change-Id: Ibaf1bdc09ddfa0ece86da42685ced2f2504d970d --- M Transceiver52M/osmo-trx.cpp 1 file changed, 0 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-trx refs/changes/89/41889/1
diff --git a/Transceiver52M/osmo-trx.cpp b/Transceiver52M/osmo-trx.cpp index c460e98..342c9eb 100644 --- a/Transceiver52M/osmo-trx.cpp +++ b/Transceiver52M/osmo-trx.cpp @@ -547,7 +547,6 @@ std::ostringstream ost("");
ost << "Config Settings" << std::endl; - ost << " Log Level............... " << (unsigned int) osmo_stderr_target->loglevel << std::endl; ost << " Device args............. " << charp2str(trx->cfg.dev_args) << std::endl; ost << " TRX Base Port........... " << trx->cfg.base_port << std::endl; ost << " TRX Address............. " << charp2str(trx->cfg.bind_addr) << std::endl;