Fixing status handling when ONU is disabled

Change-Id: Icf29df5fd8c3556d7d5f1d1d2d3b674796b0e25a
diff --git a/xos/synchronizer/event_steps/dhcp_event.py b/xos/synchronizer/event_steps/dhcp_event.py
index eec273d..b41f803 100644
--- a/xos/synchronizer/event_steps/dhcp_event.py
+++ b/xos/synchronizer/event_steps/dhcp_event.py
@@ -43,13 +43,14 @@
 
         subscriber = RCORDSubscriber.objects.get(onu_device=onu_sn)
 
-        self.log.debug("dhcp.events: Got event for subscriber", subscriber=subscriber, event_value=value, onu_sn=onu_sn)
+        self.log.info("dhcp.events: Got event for subscriber", subscriber=subscriber, event_value=value, onu_sn=onu_sn)
 
         # NOTE it will be better to update the SI and use the model policy to update the subscriber,
         # if this fails for any reason the event is lost
         if subscriber.ip_address != value["ipAddress"] or \
             subscriber.mac_address != value["macAddress"]:
 
+            # FIXME apparently it's always saving
             subscriber.ip_address = value["ipAddress"]
             subscriber.mac_address = value["macAddress"]
             subscriber.save()