Skip to content

Commit

Permalink
Add response to RemoteWebDriver's client log level (#7925)
Browse files Browse the repository at this point in the history
Replaced log 'command' with 'response' in RemoteDriver.setLogLevel

Fixes #7632
  • Loading branch information
vijay44 authored Feb 15, 2020
1 parent be6010c commit d69ee97
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ Response execute(CommandPayload payload) {
try {
log(sessionId, command.getName(), command, When.BEFORE);
response = executor.execute(command);
log(sessionId, command.getName(), command, When.AFTER);
log(sessionId, command.getName(), response, When.AFTER);

if (response == null) {
return null;
Expand Down

0 comments on commit d69ee97

Please sign in to comment.