Enable debug interface on Serail1

Hello together,

I work with the CurieBLE Library and would like to debug the BLE protocol stack. I have a ftdi USB to TTL adapter connected to rx and tx and this connected to a usb port.

After that I have executed all the steps described under:

How do I get the log file now? If I initialize Serial1 and open the monitor at the appropriate com port nothing happens.

Did you set the baud rate menu at the bottom right corner of the Serial Monitor window to 115200?

From the serial monitor to which the arduino is connected? Or from the one to which the adapter is connected?

My code looks like this:

void setup() {
  Serial.begin(9600);    // initialize serial communication
  Serial1.begin(115200);
  log_init();

  // begin initialization
  BLE.begin();
}

The one connected to the adapter on Serial1 should be set to 115200 baud.

nothing happend when i do that. I cant see any log :confused:

Are The connections may not agree?

I have rx connected to rx, tx with tx and ground with ground.