logging: add log_source_id_get

Add API to get the logging module source ID from the
module name;

Signed-off-by: Ryan Erickson <ryan.erickson@lairdconnect.com>
This commit is contained in:
Ryan Erickson 2022-06-23 08:40:06 -05:00 committed by Carles Cufí
commit fb34a9749f
4 changed files with 20 additions and 40 deletions

View file

@ -64,6 +64,17 @@ const char *log_source_name_get(uint32_t domain_id, uint32_t src_id)
return src_id < z_log_sources_count() ? log_name_get(src_id) : NULL;
}
int log_source_id_get(const char *name)
{
for (int i = 0; i < log_src_cnt_get(CONFIG_LOG_DOMAIN_ID); i++) {
if (strcmp(log_source_name_get(CONFIG_LOG_DOMAIN_ID, i),
name) == 0) {
return i;
}
}
return -1;
}
static uint32_t max_filter_get(uint32_t filters)
{
uint32_t max_filter = LOG_LEVEL_NONE;