commit | 31f2180f563ba1f597b735f1091310dbfe81de08 | [log] [tgz] |
---|---|---|
author | Rohan Agrawal <rohan.agrawal01@infosys.com> | Fri Jun 12 05:38:46 2020 +0000 |
committer | Rohan Agrawal <rohan.agrawal01@infosys.com> | Fri Jul 10 06:03:52 2020 +0000 |
tree | 9751e4cc8429f113fe86126c3779d596908bb0ea | |
parent | 8f9e9df5861ed0ad8957a8204c3036bf4e50c72d [diff] [blame] |
[VOL-3187]Pass Context down the execution call hierarchy across voltha-go codebase Change-Id: I6bc2a0f7226c1beed4ae01a15d7b5c4dc04358d8
diff --git a/rw_core/release.go b/rw_core/release.go index 67f8187..1fbfc2b 100644 --- a/rw_core/release.go +++ b/rw_core/release.go
@@ -18,6 +18,9 @@ package main +import "context" + func realMain() { - logger.Infoln("NOT PROFILING") + ctx := context.Background() + logger.Infoln(ctx, "NOT PROFILING") }