Commit 90a69777 authored by Waleed Akbar's avatar Waleed Akbar
Browse files

feat: Update log level to DEBUG in deviceservice and add logging for SetConfig...

feat: Update log level to DEBUG in deviceservice and add logging for SetConfig method in IetfL3VpnDriver
parent d5bc16a3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ spec:
            - containerPort: 9192
          env:
            - name: LOG_LEVEL
              value: "INFO"
              value: "DEBUG"
          startupProbe:
            exec:
              command: ["/bin/grpc_health_probe", "-addr=:2020"]
+1 −0
Original line number Diff line number Diff line
@@ -186,6 +186,7 @@ class IetfL3VpnDriver(_Driver):
    def SetConfig(
        self, resources : List[Tuple[str, Any]]
    ) -> List[Union[bool, Exception]]:
        LOGGER.info('SetConfig called with resources: {:s}'.format(str(resources)))
        results = []
        if len(resources) == 0: return results
        with self.__lock: