diff options
author | Manikandan C <Manikandan.Chockalingam@in.bosch.com> | 2016-01-28 13:57:07 +0530 |
---|---|---|
committer | Gernot Wirschal <gernot.wirschal@bmw.de> | 2016-04-28 14:32:55 +0200 |
commit | a966393ad7003d02870bceffa08df5ddf4bbf864 (patch) | |
tree | f6e0fb5c0f1b47a47ab944d5dc6731e820bf309e /include/dlt/dlt_client.h | |
parent | 6a8919c637b28fab7cc6f8e87cfca6f13bb8cb1d (diff) | |
download | DLT-daemon-a966393ad7003d02870bceffa08df5ddf4bbf864.tar.gz |
dlt-control: Provision to control entire system log level
1. support for setting log level using wildcards for both app and context
2. support for setting entire system log level
Signed-off-by: Manikandan C <Manikandan.Chockalingam@in.bosch.com>
Change-Id: I92f8c5461903f092cd50f05f644013432940a87b
Diffstat (limited to 'include/dlt/dlt_client.h')
-rw-r--r-- | include/dlt/dlt_client.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/dlt/dlt_client.h b/include/dlt/dlt_client.h index 676ffeb..a4d3181 100644 --- a/include/dlt/dlt_client.h +++ b/include/dlt/dlt_client.h @@ -207,6 +207,13 @@ DltReturnValue dlt_client_send_trace_status(DltClient *client, char *apid, char */ DltReturnValue dlt_client_send_default_log_level(DltClient *client, uint8_t defaultLogLevel); /** + * Send the log level to all contexts registered with dlt daemon + * @param client pointer to dlt client structure + * @param LogLevel Log Level to be set + * @return negative value if there was an error + */ +int dlt_client_send_all_log_level(DltClient *client, uint8_t LogLevel); +/** * Send the default trace status to the dlt daemon * @param client pointer to dlt client structure * @param defaultTraceStatus Default Trace Status |