LayerManagerCommands: log screen/layer/surface IDs in decimal and hex
[profile/ivi/layer-management.git] / LayerManagerCommands / src / LayerAddSurfaceCommand.cpp
index b091169..8c39051 100644 (file)
@@ -54,8 +54,8 @@ const std::string LayerAddSurfaceCommand::getString()
 {
     std::stringstream description;
     description << "LayerAddSurfaceCommand("
-                << "layerid=" << m_layerid
-                << ", surfaceid=" << m_surfaceid
+                << "layerid=" << m_layerid << "(0x" << std::hex << m_layerid << ")" << std::dec
+                << ", surfaceid=" << m_surfaceid << "(0x" << std::hex << m_surfaceid << ")" << std::dec
                 << ")";
     return description.str();
 }