Skip to content

Commit

Permalink
Merge pull request #16618 from SajinaKandy/vlog_encryption
Browse files Browse the repository at this point in the history
Fix Misleading vlog message when using JITServer encryption.
  • Loading branch information
mpirvu committed Feb 7, 2023
2 parents 2dab8c4 + 139fc7a commit beceb3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/compiler/net/ServerStream.cpp
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2018, 2022 IBM Corp. and others
* Copyright (c) 2018, 2023 IBM Corp. and others
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
Expand Down Expand Up @@ -110,7 +110,7 @@ bool ServerStream::createSSLContext(SSL_CTX *&ctx, const char *sessionContextID,
(*OSSL_CTX_set_verify)(ctx, SSL_VERIFY_PEER, NULL);

if (TR::Options::getVerboseOption(TR_VerboseJITServer))
TR_VerboseLog::writeLineLocked(TR_Vlog_JITServer, "MetricsServer: Successfully initialized SSL context (%s)\n", (*OOpenSSL_version)(0));
TR_VerboseLog::writeLineLocked(TR_Vlog_JITServer, "Successfully initialized SSL context (%s)\n", (*OOpenSSL_version)(0));

return true;
}
Expand Down

0 comments on commit beceb3d

Please sign in to comment.