Clean-up: entry code msgs in user_channel cpp files

Cleaning up phosphor logging entry messages from
the usage of ':' to '=' in the whole user_channel
dir cpp files.

Signed-off-by: Ayushi Smriti <smriti.ayushi@linux.intel.com>
Change-Id: Ifa8eb35751279cf6bebd876105b7a4d24deb98a0
diff --git a/user_channel/channel_mgmt.cpp b/user_channel/channel_mgmt.cpp
index f2a6354..b56da33 100644
--- a/user_channel/channel_mgmt.cpp
+++ b/user_channel/channel_mgmt.cpp
@@ -142,7 +142,7 @@
     if (!isValidChannel(chNum))
     {
         log<level::ERR>("Invalid channel number.",
-                        entry("ChannelID:%d", chNum));
+                        entry("ChannelID=%d", chNum));
         throw std::invalid_argument("Invalid channel number");
     }
 
@@ -160,7 +160,7 @@
         }
     }
     log<level::ERR>("Invalid channel name.",
-                    entry("Channel:%s", chName.c_str()));
+                    entry("Channel=%s", chName.c_str()));
     throw std::invalid_argument("Invalid channel name");
 
     return -1;
@@ -172,7 +172,7 @@
     if (pos == std::string::npos)
     {
         log<level::ERR>("Invalid interface path.",
-                        entry("PATH:%s", path.c_str()));
+                        entry("PATH=%s", path.c_str()));
         throw std::invalid_argument("Invalid interface path");
     }
     std::string chName =
@@ -191,7 +191,7 @@
     }
     catch (const std::invalid_argument& e)
     {
-        log<level::ERR>("Exception: ", entry("MSG: %s", e.what()));
+        log<level::ERR>("Exception: ", entry("MSG=%s", e.what()));
         return;
     }
 
@@ -217,7 +217,7 @@
     if (intfPrivStr.empty())
     {
         log<level::ERR>("Invalid privilege string.",
-                        entry("INTF:%s", chName.c_str()));
+                        entry("INTF=%s", chName.c_str()));
         return;
     }
 
@@ -230,7 +230,7 @@
     }
     catch (const std::invalid_argument& e)
     {
-        log<level::ERR>("Exception: ", entry("MSG: %s", e.what()));
+        log<level::ERR>("Exception: ", entry("MSG=%s", e.what()));
         return;
     }
 
@@ -613,7 +613,7 @@
             {
                 log<level::DEBUG>(
                     "Network interface does not exist",
-                    entry("INTERFACE:%s", channelData[chNum].chName.c_str()));
+                    entry("INTERFACE=%s", channelData[chNum].chName.c_str()));
                 return IPMI_CC_UNSPECIFIED_ERROR;
             }
         }
@@ -804,7 +804,7 @@
     catch (Json::parse_error& e)
     {
         log<level::DEBUG>("Corrupted channel config.",
-                          entry("MSG: %s", e.what()));
+                          entry("MSG=%s", e.what()));
         throw std::runtime_error("Corrupted channel config file");
     }
 
@@ -883,7 +883,7 @@
             {
                 log<level::WARNING>(
                     "Channel not configured so loading default.",
-                    entry("CHANNEL_NUM:%d", chNum));
+                    entry("CHANNEL_NUM=%d", chNum));
                 // If user didn't want to configure specific channel (say
                 // reserved channel), then load that index with default values.
                 setDefaultChannelConfig(chNum, defaultChannelName);
@@ -921,12 +921,12 @@
         catch (const Json::exception& e)
         {
             log<level::DEBUG>("Json Exception caught.",
-                              entry("MSG:%s", e.what()));
+                              entry("MSG=%s", e.what()));
             return -EBADMSG;
         }
         catch (const std::invalid_argument& e)
         {
-            log<level::ERR>("Corrupted config.", entry("MSG:%s", e.what()));
+            log<level::ERR>("Corrupted config.", entry("MSG=%s", e.what()));
             return -EBADMSG;
         }
     }
@@ -980,7 +980,7 @@
             {
                 log<level::ERR>(
                     "Invalid/corrupted volatile channel access file",
-                    entry("FILE: %s", channelVolatileDataFilename));
+                    entry("FILE=%s", channelVolatileDataFilename));
                 throw std::runtime_error(
                     "Corrupted volatile channel access file");
             }
@@ -988,12 +988,12 @@
     }
     catch (const Json::exception& e)
     {
-        log<level::DEBUG>("Json Exception caught.", entry("MSG:%s", e.what()));
+        log<level::DEBUG>("Json Exception caught.", entry("MSG=%s", e.what()));
         throw std::runtime_error("Corrupted volatile channel access file");
     }
     catch (const std::invalid_argument& e)
     {
-        log<level::ERR>("Corrupted config.", entry("MSG:%s", e.what()));
+        log<level::ERR>("Corrupted config.", entry("MSG=%s", e.what()));
         throw std::runtime_error("Corrupted volatile channel access file");
     }
 
@@ -1048,19 +1048,19 @@
             else
             {
                 log<level::ERR>("Invalid/corrupted nv channel access file",
-                                entry("FILE:%s", channelNvDataFilename));
+                                entry("FILE=%s", channelNvDataFilename));
                 throw std::runtime_error("Corrupted nv channel access file");
             }
         }
     }
     catch (const Json::exception& e)
     {
-        log<level::DEBUG>("Json Exception caught.", entry("MSG:%s", e.what()));
+        log<level::DEBUG>("Json Exception caught.", entry("MSG=%s", e.what()));
         throw std::runtime_error("Corrupted nv channel access file");
     }
     catch (const std::invalid_argument& e)
     {
-        log<level::ERR>("Corrupted config.", entry("MSG: %s", e.what()));
+        log<level::ERR>("Corrupted config.", entry("MSG=%s", e.what()));
         throw std::runtime_error("Corrupted nv channel access file");
     }
 
@@ -1103,7 +1103,7 @@
     }
     catch (const std::invalid_argument& e)
     {
-        log<level::ERR>("Corrupted config.", entry("MSG: %s", e.what()));
+        log<level::ERR>("Corrupted config.", entry("MSG=%s", e.what()));
         return -EINVAL;
     }
 
@@ -1154,7 +1154,7 @@
     }
     catch (const std::invalid_argument& e)
     {
-        log<level::ERR>("Corrupted config.", entry("MSG: %s", e.what()));
+        log<level::ERR>("Corrupted config.", entry("MSG=%s", e.what()));
         return -EINVAL;
     }
 
@@ -1228,10 +1228,10 @@
     catch (const sdbusplus::exception::SdBusError& e)
     {
         log<level::DEBUG>("set-property failed",
-                          entry("SERVICE:%s", service.c_str()),
-                          entry("OBJPATH:%s", objPath.c_str()),
-                          entry("INTERFACE:%s", interface.c_str()),
-                          entry("PROP:%s", property.c_str()));
+                          entry("SERVICE=%s", service.c_str()),
+                          entry("OBJPATH=%s", objPath.c_str()),
+                          entry("INTERFACE=%s", interface.c_str()),
+                          entry("PROP=%s", property.c_str()));
         return -EIO;
     }
 
@@ -1258,10 +1258,10 @@
     catch (const sdbusplus::exception::SdBusError& e)
     {
         log<level::DEBUG>("get-property failed",
-                          entry("SERVICE:%s", service.c_str()),
-                          entry("OBJPATH:%s", objPath.c_str()),
-                          entry("INTERFACE:%s", interface.c_str()),
-                          entry("PROP:%s", property.c_str()));
+                          entry("SERVICE=%s", service.c_str()),
+                          entry("OBJPATH=%s", objPath.c_str()),
+                          entry("INTERFACE=%s", interface.c_str()),
+                          entry("PROP=%s", property.c_str()));
         return -EIO;
     }
     return 0;
@@ -1288,7 +1288,7 @@
                                          privilegePropertyString, variant))
                 {
                     log<level::DEBUG>("Network interface does not exist",
-                                      entry("INTERFACE:%s",
+                                      entry("INTERFACE=%s",
                                             channelData[chNum].chName.c_str()));
                     continue;
                 }