Skip to content
Snippets Groups Projects
Commit 82acc16b authored by Botond Baranyi's avatar Botond Baranyi
Browse files

Changed the log category of 'rnd()' messages to DEBUG_UNQUALIFIED (bug 566908)


Signed-off-by: default avatarBotond Baranyi <botond.baranyi@ericsson.com>
Change-Id: I4dc2b70cd023aedc51de4596b2bc99c8e56dcc50
parent e5216a1b
No related branches found
No related tags found
No related merge requests found
......@@ -1245,10 +1245,10 @@ void LoggerPluginManager::log_matching_timeout(const char *timer_name)
void LoggerPluginManager::log_random(int action, double v, unsigned long u)
{
if (!TTCN_Logger::log_this_event(TTCN_Logger::FUNCTION_RND) && (TTCN_Logger::get_emergency_logging()<=0))
if (!TTCN_Logger::log_this_event(TTCN_Logger::DEBUG_UNQUALIFIED) && (TTCN_Logger::get_emergency_logging()<=0))
return;
API::TitanLogEvent event;
fill_common_fields(event, TTCN_Logger::FUNCTION_RND);
fill_common_fields(event, TTCN_Logger::DEBUG_UNQUALIFIED);
API::FunctionEvent_choice_random &r = event.logEvent().choice().functionEvent().choice().random();
r.operation()= action;
......
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