[VOL-2694] Use package specific logger instance in all log statements

Change-Id: Icf1cb5ade42e42179aed7731b767af2f52481e3d
diff --git a/rw_core/profile.go b/rw_core/profile.go
index 9b955b0..bce0af9 100644
--- a/rw_core/profile.go
+++ b/rw_core/profile.go
@@ -26,7 +26,7 @@
 
 func realMain() {
 	go func() {
-		log.Infoln(http.ListenAndServe("0.0.0.0:6060", nil))
+		logger.Infoln(http.ListenAndServe("0.0.0.0:6060", nil))
 	}()
 
 }