-1

How do I disable these unnecessary loading texts in Grails 4?

They are pictured below:

Enter image description here

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Jerry U
  • 618
  • 9
  • 22
  • 1
    This is output from gradle - Though i'm not sure why you're running the development time "bootRun" in docker. This is expected - see https://github.com/grails/grails-core/issues/641#issuecomment-293200370 – erichelgeson Oct 29 '19 at 15:49
  • It's 1 of 4 services I'm developing. I'm using Docker to maintain consistency across hosts. – Jerry U Oct 30 '19 at 06:51
  • Also its not stuck there 83% message, it keeps printing it unnecessarily which is annoying. – Jerry U Oct 30 '19 at 07:10
  • 1
    Have you tried adding `-q` and/or `--console=plain` to the gradle call? – cfrick Oct 30 '19 at 11:11
  • 1
    Thats what i'm saying - bootRun is not intended to be used for deployment - create a executable war/jar to run in docker. – erichelgeson Oct 30 '19 at 15:35
  • @erichelgeson Yea I usually create WARs when I'm deploying. I'm using bootRun so the files and be recompiled on the fly – Jerry U Oct 31 '19 at 11:14

1 Answers1

0

You can reduce the output of Grade with those flags:

-q --console=plain

cfrick
  • 35,203
  • 6
  • 56
  • 68