"disable-infobars" flag has been deprecated, but you can avoid this message by adding the following:
ChromeOptions options = new ChromeOptions();
options.setExperimentalOption("useAutomationExtension", false);
options.setExperimentalOption("excludeSwitches",Collections.singletonList("enable-automation"));
WebDriver driver = new ChromeDriver(options);
This work for me and I hope works for you too.