[VOL-2537] Logging - Implement dynamic log levels in voltha-core

Change-Id: I419d2bb994fbafc333a0e6df9acb906c7d5b684c
diff --git a/protos/voltha_protos/common.proto b/protos/voltha_protos/common.proto
index b6a2000..6ca156c 100644
--- a/protos/voltha_protos/common.proto
+++ b/protos/voltha_protos/common.proto
@@ -20,34 +20,6 @@
     api_test=0;
 }
 
-message LogLevel {
-    // Logging verbosity level
-    enum Types {
-        DEBUG = 0;
-        INFO = 1;
-        WARNING = 2;
-        ERROR = 3;
-        CRITICAL = 4;
-        FATAL = 5;
-    }
-}
-
-message Logging {
-    common.LogLevel.Types level = 1;
-    string package_name = 2;
-    string component_name = 3;
-}
-
-// For GetLogLevels(), select component to query
-message LoggingComponent {
-    string component_name = 1;
-}
-
-// For returning multiple log levels
-message Loggings {
-	repeated Logging items = 1;
-}
-
 message AdminState {
     // Administrative State
     enum Types {
@@ -123,4 +95,4 @@
 
     // Additional Info
     string additional_info = 2;
-}
\ No newline at end of file
+}