-
-
Notifications
You must be signed in to change notification settings - Fork 764
Remove console output from AppiumDriverLocalService by default #483
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Reason: I need to use System.out to print some less verbose output. And users can easily turn it back on by calling addOutPutStream anyway.
I fully agree on this PR. We should not log to System.out by default. |
@TikhomirovSergey ping |
Hi, this looks very interesting. |
@jeangb Meanwhile you can still use the workaround mentioned in the PR to get rid of the console output. |
Thank you @Mygod, in what class this workaround take place ? |
@jeangb Just whenever you create a |
@Mygod great, thx |
@Mygod which type is |
It's a Field in reflection. :) |
Perhaps this can be merged to master and released? To avoid workarounds... |
Do you think it would be possible to redirect this stream to an other view that console, in Eclipse. For example this view could be called Server. |
- Workaround until this appium/java-client#483
Thanks @Mygod the workaround saved me. |
This is where one can find the workaround until the appium server with this changes is released |
Change list
Remove console output from AppiumDriverLocalService by default.
Types of changes
Details
Reason: I need to use
System.out
to print some less verbose output. And user can easily turn it back on by callingaddOutPutStream
.However the other way around is hard. Here's what I'm currently using.