1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 19:29:09 +00:00

Fix crazy log-indent format mess

This commit is contained in:
2015-01-02 22:33:00 -05:00
parent 81ea5ef112
commit e1d02d9da8

View File

@ -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());