From aa85e2b76abf0af9902ef13f30cd16854405152d Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Fri, 23 Jan 2015 10:51:40 +0000 Subject: [PATCH] Fixed some debug statements formatting. --- src/backend/game.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/backend/game.cpp b/src/backend/game.cpp index f55c9aa6..43f916cd 100644 --- a/src/backend/game.cpp +++ b/src/backend/game.cpp @@ -310,32 +310,32 @@ namespace loot { BOOST_LOG_TRIVIAL(info) << "Setting new details for game: " << _name; if (!name.empty()) { - BOOST_LOG_TRIVIAL(trace) << '\t' << "Setting name to :" << name; + BOOST_LOG_TRIVIAL(trace) << '\t' << "Setting name to: " << name; _name = name; } if (!masterFile.empty()) { - BOOST_LOG_TRIVIAL(trace) << '\t' << "Setting master file to :" << masterFile; + BOOST_LOG_TRIVIAL(trace) << '\t' << "Setting master file to: " << masterFile; _masterFile = masterFile; } if (!repositoryURL.empty()) { - BOOST_LOG_TRIVIAL(trace) << '\t' << "Setting repo URL to :" << repositoryURL; + BOOST_LOG_TRIVIAL(trace) << '\t' << "Setting repo URL to: " << repositoryURL; _repositoryURL = repositoryURL; } if (!repositoryBranch.empty()) { - BOOST_LOG_TRIVIAL(trace) << '\t' << "Setting repo branch to :" << repositoryBranch; + BOOST_LOG_TRIVIAL(trace) << '\t' << "Setting repo branch to: " << repositoryBranch; _repositoryBranch = repositoryBranch; } if (!path.empty()) { - BOOST_LOG_TRIVIAL(trace) << '\t' << "Setting game path to :" << path; + BOOST_LOG_TRIVIAL(trace) << '\t' << "Setting game path to: " << path; gamePath = path; } if (!registry.empty()) { - BOOST_LOG_TRIVIAL(trace) << '\t' << "Setting registry key to :" << registry; + BOOST_LOG_TRIVIAL(trace) << '\t' << "Setting registry key to: " << registry; registryKey = registry; }