private void printHelp()

in plugin/src/main/java/com/attachme/plugin/AttachmeInstaller.java [62:74]


  private void printHelp() {
    String help = """
      ****************************  Instructions ****************************
      To auto-attach the debugger please execute these commands in your shell interpreter
      \t$ source ~/.attachme/conf.sh
      \t$ java com.example.MyApp
      In case you want to modify the port of AttachMe or java debugger (JDWP) arguments
      \t$ JDWP_ARGS="transport=dt_socket,server=y,suspend=y,address=127.0.0.1:0" AM_PORT=9009 source ~/.attachme/conf.sh
      For more details, questions or bug reports refer to https://github.com/JetBrains/attachme/
      ***********************************************************************
      """;
    log.info(help);
  }