Skip to content
Snippets Groups Projects
Commit 9771f089 authored by Richard Mudgett's avatar Richard Mudgett
Browse files

stasis/app.c: Optimize stasis_app_get_debug_by_name()

* Eliminate RAII_VAR()
* Short circuit application name lookup if global debug enabled.

Change-Id: I5f78b7bd6ca7fd2c3b07cbbe036c6a93b4681123
parent 21d408a9
No related branches found
No related tags found
No related merge requests found
......@@ -871,9 +871,21 @@ int stasis_app_get_debug(struct stasis_app *app)
int stasis_app_get_debug_by_name(const char *app_name)
{
RAII_VAR(struct stasis_app *, app, stasis_app_get_by_name(app_name), ao2_cleanup);
int debug_enabled = 0;
return (app ? app->debug : 0) || global_debug;
if (global_debug) {
debug_enabled = 1;
} else {
struct stasis_app *app = stasis_app_get_by_name(app_name);
if (app) {
if (app->debug) {
debug_enabled = 1;
}
ao2_ref(app, -1);
}
}
return debug_enabled;
}
void stasis_app_set_global_debug(int debug)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment