[DPB] Fix verbose mode issue (#9772)

This commit is contained in:
Aravind Mani 2022-01-19 11:29:11 +05:30 committed by GitHub
parent 249c27b5ac
commit d5b0261da3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,7 +49,7 @@ class SonicYangExtMixin:
self.yangFiles = [f.split('/')[-1] for f in self.yangFiles] self.yangFiles = [f.split('/')[-1] for f in self.yangFiles]
self.yangFiles = [f.split('.')[0] for f in self.yangFiles] self.yangFiles = [f.split('.')[0] for f in self.yangFiles]
self.sysLog(syslog.LOG_DEBUG,'Loaded below Yang Models') self.sysLog(syslog.LOG_DEBUG,'Loaded below Yang Models')
self.sysLog(syslog.LOG_DEBUG,self.yangFiles) self.sysLog(syslog.LOG_DEBUG,str(self.yangFiles))
# load json for each yang model # load json for each yang model
self._loadJsonYangModel() self._loadJsonYangModel()