[VOL-2941] Upgrading to latest protos and lib

Change-Id: Ie0a92172023f629744f97a7499335cef490dcc3f
diff --git a/internal/pkg/config/config.go b/internal/pkg/config/config.go
index 8b5e53f..2527caa 100644
--- a/internal/pkg/config/config.go
+++ b/internal/pkg/config/config.go
@@ -18,7 +18,7 @@
 import (
 	"flag"
 	"fmt"
-	"github.com/opencord/voltha-lib-go/v2/pkg/log"
+	"github.com/opencord/voltha-lib-go/v3/pkg/log"
 	"os"
 )
 
@@ -34,7 +34,7 @@
 	default_KVStoreTimeout   = 5 //in seconds
 	default_KVStoreHost      = "127.0.0.1"
 	default_KVStorePort      = 2379 // Consul = 8500; Etcd = 2379
-	default_LogLevel         = 0
+	default_LogLevel         = "WARN"
 	default_Banner           = false
 	default_Topic            = "simulated_olt"
 	default_CoreTopic        = "rwcore"
@@ -58,7 +58,7 @@
 	KVStorePort      int
 	Topic            string
 	CoreTopic        string
-	LogLevel         int
+	LogLevel         string
 	OnuNumber        int
 	Banner           bool
 	ProbeHost        string
@@ -130,7 +130,7 @@
 	flag.IntVar(&(so.KVStorePort), "kv_store_port", default_KVStorePort, help)
 
 	help = fmt.Sprintf("Log level")
-	flag.IntVar(&(so.LogLevel), "log_level", default_LogLevel, help)
+	flag.StringVar(&(so.LogLevel), "log_level", default_LogLevel, help)
 
 	help = fmt.Sprintf("Number of ONUs")
 	flag.IntVar(&(so.OnuNumber), "onu_number", default_OnuNumber, help)