[shill] Revert 7d45a3c9d1cd925e70b0896fd029590212efae6e - Migrate to glog/gflags
Glog conflicts with some stuff in base/ that we'd like to use, so we can't use it :-/
BUG=chromium-os:15105
TEST=build, unit test
Change-Id: Iab03aceee3c9bcfd43747d061bb580f675772b6b
Reviewed-on: http://gerrit.chromium.org/gerrit/598
Tested-by: Chris Masone <cmasone@chromium.org>
Reviewed-by: Darin Petkov <petkov@chromium.org>
diff --git a/device.cc b/device.cc
index b21d7c8..c04349d 100644
--- a/device.cc
+++ b/device.cc
@@ -7,7 +7,7 @@
#include <stdio.h>
#include <string>
-#include <glog/logging.h>
+#include "shill/shill_logging.h"
#include "shill/control_interface.h"
#include "shill/device.h"
@@ -18,6 +18,8 @@
EventDispatcher */* dispatcher */)
: adaptor_(control_interface->CreateDeviceAdaptor(this)),
running_(false) {
+ // Initialize Interface montior, so we can detect new interfaces
+ SHILL_LOG(INFO, SHILL_LOG_DEVICE) << "Device initialized.";
}
Device::~Device() {