8000 fix error message (#2970) · Hotkey/arangodb@3e0a09e · GitHub
[go: up one dir, main page]

Skip to content

Commit 3e0a09e

Browse files
jsteemannfceller
authored andcommitted
fix error message (arangodb#2970)
1 parent ae00d35 commit 3e0a09e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lib/Ssl/SslServerFeature.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,16 +117,15 @@ void SslServerFeature::unprepare() {
117117
void SslServerFeature::verifySslOptions() {
118118
// check keyfile
119119
if (_keyfile.empty()) {
120-
LOG_TOPIC(FATAL, arangodb::Logger::SSL) << "keyfile empty'" << _keyfile
121-
<< "'";
120+
LOG_TOPIC(FATAL, arangodb::Logger::SSL) << "no value specified for '--ssl.keyfile'";
122121
FATAL_ERROR_EXIT();
123122
}
124123

125124
// validate protocol
126125
if (_sslProtocol <= SSL_UNKNOWN || _sslProtocol >= SSL_LAST) {
127126
LOG_TOPIC(FATAL, arangodb::Logger::SSL)
128127
<< "invalid SSL protocol version specified. Please use a valid "
129-
"value for '--ssl.protocol'.";
128+
"value for '--ssl.protocol'";
130129
FATAL_ERROR_EXIT();
131130
}
132131

0 commit comments

Comments
 (0)
0