Serial Monitor not working now

I have been using serial monitor with the Yun for months and now something isn't working:

This code does NOT work anymore:

/* Yun specific */
#include <Bridge.h>
#include <Process.h>
#include <Console.h>

void setup() 
{
  // Initialize serial port
  Bridge.begin();
  Console.begin();
  while(!Console);

  Console.println("Initializing...");

No response from the serial monitor

This code DOES work:

long linuxBaud = 250000;

void setup() {
  SERIAL_PORT_USBVIRTUAL.begin(115200);  // open serial connection via USB-Serial
  SERIAL_PORT_HARDWARE.begin(linuxBaud); // open serial connection to Linux
}

What has changed? I am using a MAC. removed the IDE and replaced with fresh install. same thing

Disregard...

BRAIN FART!

Console.print for wifi
Serial.print for USB