Skip to content
Snippets Groups Projects
Commit 1308142f authored by gmantele's avatar gmantele
Browse files

[UWS,TAP] Fix regression: the log message for the event REQUEST_RECEIVED was...

[UWS,TAP] Fix regression: the log message for the event REQUEST_RECEIVED was not displayed any more.
parent 8d630a59
No related branches found
No related tags found
No related merge requests found
...@@ -463,7 +463,7 @@ public class DefaultUWSLog implements UWSLog { ...@@ -463,7 +463,7 @@ public class DefaultUWSLog implements UWSLog {
str.append(')'); str.append(')');
// Send the log message to the log file: // Send the log message to the log file:
log(level, "HTTP", "REQUEST_RECEIVED", requestId, message, str.toString(), error); log(level, "HTTP", "REQUEST_RECEIVED", requestId, (message != null ? message : str.toString()), (message != null ? str.toString() : null), error);
} }
// OTHERWISE, just write the given message: // OTHERWISE, just write the given message:
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment