简体   繁体   English

mvm quarkus:dev 现在有命令行交互界面,如何关闭它?

[英]mvm quarkus:dev now has commandline interactive interface how can I turn it off?

I run quarkus using the command我使用命令运行 quarkus

mvn quarkus:dev

In the past this was fine but now the output is interspersed with an interactive curses based menu like below:在过去这很好,但现在 output 穿插着一个交互式的基于 curses 的菜单,如下所示:

Tests paused
Press [r] to resume testing, [o] Toggle test output, [h] for more options>

I am spawning several quarkus processes at one time and redirecting the output into a UI I created to aggregate the output so I'm not flipping back and forth between 7 terminal windows. The recent introduction of this "feature" apparently causes the normal output to either be redirected directly to the tty because the redirection of stderr/stdout is no logger being picked up by my application.我一次生成多个 quarkus 进程并将 output 重定向到我创建的用于聚合 output 的 UI,因此我不会在 7 个终端 windows 之间来回切换。最近引入此“功能”显然会导致正常的 output 到要么直接重定向到 tty,因为 stderr/stdout 的重定向不是我的应用程序接收到的记录器。 How can I remove this feature from quarkus:dev?我如何从 quarkus:dev 中删除此功能?

Use mvn quarkus:dev -Dquarkus.console.enabled='false'使用mvn quarkus:dev -Dquarkus.console.enabled='false'

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM