* Retrieve the current log level (verbosity) of the log service. This * is a global setting for all subscriptions. * * @return Returns an unsigned int of the log level (0-6). */
| 347 | * @return Returns an unsigned int of the log level (0-6). |
| 348 | */ |
| 349 | unsigned int GetLogLevel(const bool oldval = false) const |
| 350 | { |
| 351 | if (oldval && CheckChange(Changed::LOGLEVEL)) |
| 352 | { |
| 353 | return old_loglev; |
| 354 | } |
| 355 | return logservice->GetProperty<uint32_t>(logtarget, "log_level"); |
| 356 | } |
| 357 | |
| 358 | |
| 359 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected