[VOL-3187]Pass Context down the execution call hierarchy across ofagent codebase

Change-Id: Ia5f2fa1509beefe0ddc427b83e39d2702782db8f
diff --git a/cmd/ofagent/release.go b/cmd/ofagent/release.go
index 67f8187..1fbfc2b 100644
--- a/cmd/ofagent/release.go
+++ b/cmd/ofagent/release.go
@@ -18,6 +18,9 @@
 
 package main
 
+import "context"
+
 func realMain() {
-	logger.Infoln("NOT PROFILING")
+	ctx := context.Background()
+	logger.Infoln(ctx, "NOT PROFILING")
 }