mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 04:30:28 +00:00
stasis: Improve message type "Use of before/init after destruction"
Fixes issue where error msg "Use of before/init after destruction" was being printed on disabled messages in dev mode. With this fix if message is disabled a warning will print. ASTERISK-25548 Change-Id: Ie0d866d1cbc60c16dbef08bc65e99505c3c1adfa
This commit is contained in:
committed by
Chris Savinovich
parent
953bdc3365
commit
ae5ba776ae
@@ -1201,7 +1201,9 @@ struct stasis_topic *stasis_topic_pool_get_topic(struct stasis_topic_pool *pool,
|
||||
void stasis_log_bad_type_access(const char *name)
|
||||
{
|
||||
#ifdef AST_DEVMODE
|
||||
ast_log(LOG_ERROR, "Use of %s() before init/after destruction\n", name);
|
||||
if (!stasis_message_type_declined(name)) {
|
||||
ast_log(LOG_ERROR, "Use of %s() before init/after destruction\n", name);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user