X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=E2Manager%2Ftests%2Futils.go;h=edd3740048fad597ad547e915a0589281ca48635;hb=101f63e0f02afc5293a2cba6ed8909af2ad94b39;hp=894f5549796cf2e4a89b9aee73f3447d074dafa4;hpb=372a275602ae05da22130a4601709291c7fbbaa6;p=ric-plt%2Fe2mgr.git diff --git a/E2Manager/tests/utils.go b/E2Manager/tests/utils.go index 894f554..edd3740 100644 --- a/E2Manager/tests/utils.go +++ b/E2Manager/tests/utils.go @@ -15,6 +15,9 @@ // limitations under the License. // +// This source code is part of the near-RT RIC (RAN Intelligent Controller) +// platform project (RICP). + package tests import ( @@ -28,7 +31,8 @@ import ( ) func InitLog(t *testing.T) *logger.Logger { - log, err := logger.InitLogger(logger.InfoLevel) + InfoLevel := int8(1) + log, err := logger.InitLogger(InfoLevel) if err != nil { t.Errorf("#test.utils.InitLog - failed to initialize logger, error: %s", err) }