[VOL-3069]Pass Context in methods which are performing logging and need the context

Change-Id: Ie84f9e240aa4f47d0046acaac0d82d21b17252e5
diff --git a/cmd/openolt-adapter/release.go b/cmd/openolt-adapter/release.go
index a8fb220..0f18e72 100644
--- a/cmd/openolt-adapter/release.go
+++ b/cmd/openolt-adapter/release.go
@@ -19,6 +19,8 @@
 //Package main invokes the application
 package main
 
+import "context"
+
 func realMain() {
-	logger.Infoln("NOT PROFILING")
+	logger.Infoln(context.Background(), "NOT PROFILING")
 }