2

When debugging is started IntelliJ shows in console that message:

Connected to the target VM, address: '127.0.0.1:18443', transport: 'socket'

and when debugging has finished it shows

Disconnected from the target VM, address: '127.0.0.1:18443', transport: 'socket'

How do I get rid of those messages?

menteith
  • 596
  • 14
  • 51

1 Answers1

2

Settings (Preferences on macOS) | Editor | General | Console | Fold console lines that contain.

fold console

Add the debugger messages to the patterns list.

CrazyCoder
  • 389,263
  • 172
  • 990
  • 904
  • The linked page says that the setting only applies to python, but the question is about java. For java, under Windows, the setting can currently be found at Settings -> Editor -> General -> Console. – Mike Nakis Mar 06 '21 at 08:41