From e1d02d9da8b6a47d03adef1497621390a3b4484d Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Fri, 2 Jan 2015 22:33:00 -0500 Subject: [PATCH] Fix crazy log-indent format mess --- Sources/Plasma/PubUtilLib/plVault/plVaultClientApi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Plasma/PubUtilLib/plVault/plVaultClientApi.cpp b/Sources/Plasma/PubUtilLib/plVault/plVaultClientApi.cpp index db113cbf..86ae798c 100644 --- a/Sources/Plasma/PubUtilLib/plVault/plVaultClientApi.cpp +++ b/Sources/Plasma/PubUtilLib/plVault/plVaultClientApi.cpp @@ -1369,7 +1369,7 @@ void RelVaultNode::SetSeen (unsigned parentId, bool seen) { void RelVaultNode::Print (const plString& tag, unsigned level) { plStringStream ss; ss << tag; - ss << plFormat(plFormat("{{{}}", level * 2).c_str(), " "); // creates the indentation + ss << plString::Fill(level * 2, ' '); ss << " " << GetNodeId(); ss << " " << plVault::NodeTypeStr(GetNodeType());