Lower down log level of sbus logging start message

The log message is sent in a normal sequence without any failure, so
it shouldn't be logger in the error level.

Change-Id: Ia99639df19d7ec97c42c3b365b2042a75ff66bb0
This commit is contained in:
Takashi Kajinami 2024-09-11 02:00:48 +09:00
parent 86d8f05d51
commit 1099d3788d

View File

@ -81,8 +81,8 @@ void sbus_start_logger( const char* str_log_level, const char* container_id )
setlogmask( LOG_EMERG );
else
setlogmask( LOG_UPTO( n_level ) );
syslog( LOG_ERR,
"sbus_start_logger: Started with Level %s",
syslog( LOG_DEBUG,
"sbus_start_logger: Started with Level %s",
str_log_level );
}