How to find the Local IP address of my Spark Core [SOLVED]

I tried various options here but couldn’t seem to figure out how to find the local IP address of my Spark Core.
Any help?

If you have serial debugging setup you can do it as follows:

    Serial.print("-Local IP: ");
    Serial.println(Network.localIP());

Also check this part of the doc out for more network related functions.
http://docs.spark.io/firmware/#connection-management-network

Thank you
That helped a lot

NP, I have that amongst a few other things print in the setup of ever sketch.