Skip to content

Commit

Permalink
HPCC-31484 Remove spurious newlines from thor tracing
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Halliday <gavin.halliday@lexisnexis.com>
  • Loading branch information
ghalliday committed Mar 18, 2024
1 parent 1c441ca commit 9e61db7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion thorlcr/master/thgraphmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@ bool CJobManager::executeGraph(IConstWorkUnit &workunit, const char *graphName,
SCMStringBuffer eclstr;
StringAttr user(workunit.queryUser());

PROGLOG("Started wuid=%s, user=%s, graph=%s\n", wuid.str(), user.str(), graphName);
PROGLOG("Started wuid=%s, user=%s, graph=%s", wuid.str(), user.str(), graphName);

PROGLOG("Query %s loaded", soPath.str());
Owned<CJobMaster> job = createThorGraph(graphName, workunit, querySo, sendSo, agentEp);
Expand Down
2 changes: 1 addition & 1 deletion thorlcr/slave/slavmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1897,7 +1897,7 @@ class CJobListener : public CSimpleInterface
thorJob.setJobID(thorJobId);
setDefaultJobId(thorJobId);

PROGLOG("Started wuid=%s, user=%s, graph=%s [log detail level=%u]\n", wuid.get(), user.str(), graphName.get(), maxLogDetail);
PROGLOG("Started wuid=%s, user=%s, graph=%s [log detail level=%u]", wuid.get(), user.str(), graphName.get(), maxLogDetail);
PROGLOG("Using query: %s", soPath.str());

if (!getExpertOptBool("slaveDaliClient") && workUnitInfo->getPropBool("Debug/slavedaliclient", false))
Expand Down

0 comments on commit 9e61db7

Please sign in to comment.