io.info("Connected");
        // If the username/password was not configured via cli, then prompt the user for the values
        if (username == null || password == null) {
            if (username == null) {
                username = prompter.readLine("Username: ");
            }
            if (password == null) {
                password = prompter.readPassword("Password: ");
            }