diff --git a/init/property_service.cpp b/init/property_service.cpp index fc5538c51..467568c78 100644 --- a/init/property_service.cpp +++ b/init/property_service.cpp @@ -557,9 +557,8 @@ static void handle_property_set_fd() { uint32_t result = HandlePropertySet(prop_name, prop_value, socket.source_context(), cr, &error); if (result != PROP_SUCCESS) { - LOG(ERROR) << "Unable to set property '" << prop_name << "' to '" << prop_value - << "' from uid:" << cr.uid << " gid:" << cr.gid << " pid:" << cr.pid << ": " - << error; + LOG(ERROR) << "Unable to set property '" << prop_name << "' from uid:" << cr.uid + << " gid:" << cr.gid << " pid:" << cr.pid << ": " << error; } break; @@ -579,9 +578,8 @@ static void handle_property_set_fd() { std::string error; uint32_t result = HandlePropertySet(name, value, socket.source_context(), cr, &error); if (result != PROP_SUCCESS) { - LOG(ERROR) << "Unable to set property '" << name << "' to '" << value - << "' from uid:" << cr.uid << " gid:" << cr.gid << " pid:" << cr.pid << ": " - << error; + LOG(ERROR) << "Unable to set property '" << name << "' from uid:" << cr.uid + << " gid:" << cr.gid << " pid:" << cr.pid << ": " << error; } socket.SendUint32(result); break;