Attention is currently required from: laforge.
1 comment:
File src/logging.c:
* Check whether the logging framework is initialized (osmo_log_info exists) */
int log_initialized(void)
{
if (!osmo_log_info)
return 0;
return 1;
}
this is a non-inline function that does nothing else but exporting the value of an (already global, […]
This variable is global, but I think its not exported. I have put it as extern variable in the header file now so that I can use it directly from the macros. I also thought of doing this, but I wasn't sure if it is was a good idea to expose osmo_log_info.
To view, visit change 26950. To unsubscribe, or for help writing mail filters, visit settings.