When we start up my Raspberry pi 2, we get the following error:

When the RPI is rebooted, we are getting an IP and we are able to surf on the internet, so we don't know what the error exactly means. We are connected with a WPA2-enterprise network.
This is my interfaces file:
auto lo
iface lo inet loopback
iface eth0 inet dhcp
auto wlan0
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
And this is my wpa_supplicant.conf file:
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="Here comes my ssid"
proto=RSN
key_mgmt=WPA-EAP
pairwise=CCMP
auth_alg=OPEN
identity="Here comes my identity"
password="here comes my password"
}
How to solve this issue?