Adjust log level 62/196862/1
authorJunghyun Yeon <jungh.yeon@samsung.com>
Mon, 7 Jan 2019 02:39:40 +0000 (11:39 +0900)
committerJunghyun Yeon <jungh.yeon@samsung.com>
Mon, 7 Jan 2019 02:39:40 +0000 (11:39 +0900)
Change-Id: I60c3f17a101492f152f7078e3142c24ae7a496a4
Signed-off-by: Junghyun Yeon <jungh.yeon@samsung.com>
src/common/plugins/types/category_plugin.cc
src/common/plugins/types/metadata_plugin.cc
src/common/plugins/types/tag_plugin.cc

index 1243964..90b5228 100644 (file)
@@ -50,7 +50,7 @@ std::string CategoryPlugin::GetFunctionName(ActionType action) const {
 
   auto pos = names.find(action);
   if (pos == names.end()) {
-    LOG(ERROR) << "Function name not defined";
+    LOG(INFO) << "Function name not defined";
     return "";
   }
   return pos->second;
index aef5df1..4016e91 100644 (file)
@@ -53,7 +53,7 @@ std::string MetadataPlugin::GetFunctionName(ActionType action) const {
 
   auto pos = names.find(action);
   if (pos == names.end()) {
-    LOG(ERROR) << "Function name not defined";
+    LOG(INFO) << "Function name not defined";
     return "";
   }
   return pos->second;
index 41caa9b..fed286a 100644 (file)
@@ -45,7 +45,7 @@ std::string TagPlugin::GetFunctionName(ProcessType process,
 
   auto pos = names.find(std::make_pair(action, process));
   if (pos == names.end()) {
-    LOG(ERROR) << "Function name not defined";
+    LOG(INFO) << "Function name not defined";
     return "";
   }
   return pos->second;