Skip to content

Commit

Permalink
Merge pull request #10209 from dmitry-ten/client-id-fix
Browse files Browse the repository at this point in the history
Fix client UUID printing in verbose log
  • Loading branch information
mpirvu authored Jul 24, 2020
2 parents 78d85c5 + 3023343 commit a91c5af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/compiler/control/J9Options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2130,8 +2130,8 @@ J9::Options::setupJITServerOptions()
TR_VerboseLog::writeLineLocked(TR_Vlog_JITServer, "JITServer Client Mode. Server address: %s port: %d. Connection Timeout %ums",
persistentInfo->getJITServerAddress().c_str(), persistentInfo->getJITServerPort(),
persistentInfo->getSocketTimeout());
TR_VerboseLog::writeLineLocked(TR_Vlog_JITServer, "Identifier for current client JVM: %" OMR_PRIu64 "\n",
compInfo->getPersistentInfo()->getClientUID());
TR_VerboseLog::writeLineLocked(TR_Vlog_JITServer, "Identifier for current client JVM: %llu\n",
(unsigned long long) compInfo->getPersistentInfo()->getClientUID());
}
}

Expand Down

0 comments on commit a91c5af

Please sign in to comment.