Hello everyone, I’ve got kind of a noob question: ...
# announcements
m
Hello everyone, I’ve got kind of a noob question: how do you properly log (or just print) inside a test? specifially if it runs with gradle?
f
You need to enable standard streams to be displayed in Gradle for your print output to show up in your console. IntelliJ does that by default if you run your tests with it. More info: https://stackoverflow.com/questions/40954017
m
aight thank you
@Fleshgrinder do you know how to do that in a normal run as well?
f
What do you mean by normal run?
m
@Fleshgrinder just being able to show
println(...)
during a continuous
gradle run
task
f
You probably need to use
--console=plain
too have Gradle print everything, besides the show standard streams settings.