You will see a default profile unless you specify which profile to use. To configure this in order to view the normal profile, navigate to chrome://version in a new tab. Your profile path is visible, and you can enter any specified option, by removing the "/Default" from the end of your path if any. Here's an example (this is for Windows, but the same code would work for Mac, just change the path)
System.out.println("Now opening Chrome in my profile");
ChromeOptions options = new ChromeOptions();
options.addArguments("userdir=C:/Users/[your user name]/AppData/Local/Google/Chrome/User Data");
driver = new ChromeDriver(options);
driver.get("URL");