You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -116,7 +122,9 @@ getLogLevel(int argc, char **argv, int *error)
116
122
goto done;
117
123
}
118
124
setLogLevelOptionValueNotValidError:
119
-
JLI_ReportErrorMessage("The value of the command line option is not valid, option=-Dopenj9.internal.criu.logLevel, value=%s.", logLevelPropertyValue);
125
+
JLI_ReportErrorMessage(
126
+
"The option '-Dopenj9.internal.criu.logLevel=%s' is not valid.",
127
+
logLevelPropertyValue);
120
128
*error=-2;
121
129
done:
122
130
returnlogLevelValue;
@@ -138,7 +146,9 @@ isUnprivilegedModeOn(int argc, char **argv, int *error)
138
146
if (NULL==unprivilegedModePropertyValue) {
139
147
isUnprivilegedModeOn=JNI_TRUE;
140
148
} else {
141
-
JLI_ReportErrorMessage("The value of the command line option is not expected, option=-Dopenj9.internal.criu.unprivilegedMode, value=%s.", unprivilegedModePropertyValue);
149
+
JLI_ReportErrorMessage(
150
+
"The option '-Dopenj9.internal.criu.unprivilegedMode=%s' does not accept a value.",
151
+
unprivilegedModePropertyValue);
142
152
*error=-2;
143
153
}
144
154
}
@@ -161,7 +171,7 @@ getLogFile(int argc, char **argv, int *error)
161
171
if (NULL!=logFilePropertyValue) {
162
172
logFile=logFilePropertyValue;
163
173
} else {
164
-
JLI_ReportErrorMessage("The value of the command line option -Dopenj9.internal.criu.logFile was not found.");
174
+
JLI_ReportErrorMessage("The option -Dopenj9.internal.criu.logFile requires a value.");
165
175
*error=-2;
166
176
}
167
177
}
@@ -179,7 +189,6 @@ getLogFile(int argc, char **argv, int *error)
0 commit comments