Hey everyone, I’m executing the `run` gradle desk ...
# compose-desktop
m
Hey everyone, I’m executing the
run
gradle desk for my Desktop app and not seeing any standard output.
e
mind editing everything into a single message/thread?
m
Yes, sorry!
e
Gradle defaults to
exec
inherits stdout/stderr, so you shouldn't need any additional work to pipe it
m
I took a closer look at the task class,
AbstractRunDistributableTask
https://github.com/JetBrains/compose-multiplatform/blob/92aae7397d1c601475df88e134[…]mpose/desktop/application/tasks/AbstractRunDistributableTask.kt It looks like the process might be executed without piping the standard output. Is that possible? If so, is there any workaround?
Got it. Thanks for confirming it should work.
Maybe there is something weird in my gradle configuration
e
stdout is at QUIET level so you might not see it. try using
gradle --info
m
My default log level for gradle is
warn
. I just tried
--info
and it did not help
e
hmm, maybe it's being buffered then
m
I tried printing 1000 lines just now and it didn’t help
Maybe I should try a sample project
🤦‍♂️🤦‍♂️🤦‍♂️
I am so sorry for wasting your time
I used System.setOut to a file
e
ah, that'll do it :)