Lower log level for config and service init messages

Changed logging from info to debug for config imports, CAF logging, socket server, and gRPC server startup. OpenTelemetry initialization now only runs if enabled, with results logged at debug level.
This commit is contained in:
Magne Sjaastad
2026-01-22 12:49:34 +01:00
committed by JJ
parent 414cf1df04
commit c98777e9bb
4 changed files with 24 additions and 21 deletions
@@ -74,7 +74,7 @@ RiaSocketServer::RiaSocketServer( QObject* parent )
}
QString txt = QString( "Octave is using port: %1" ).arg( portNumber );
RiaLogging::info( txt );
RiaLogging::debug( txt );
connect( m_nextPendingConnectionTimer, SIGNAL( timeout() ), this, SLOT( slotNewClientConnection() ) );
connect( m_tcpServer, SIGNAL( newConnection() ), this, SLOT( slotNewClientConnection() ) );