本文整理匯總了Python中filter.FileFilter.delLogPath方法的典型用法代碼示例。如果您正苦於以下問題:Python FileFilter.delLogPath方法的具體用法?Python FileFilter.delLogPath怎麽用?Python FileFilter.delLogPath使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類filter.FileFilter
的用法示例。
在下文中一共展示了FileFilter.delLogPath方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: delLogPath
# 需要導入模塊: from filter import FileFilter [as 別名]
# 或者: from filter.FileFilter import delLogPath [as 別名]
def delLogPath(self, path):
if not self.containsLogPath(path):
logSys.error(path + " is not monitored")
else:
del self.__lastModTime[path]
del self.__file404Cnt[path]
FileFilter.delLogPath(self, path)
logSys.info("Removed logfile = %s" % path)
示例2: delLogPath
# 需要導入模塊: from filter import FileFilter [as 別名]
# 或者: from filter.FileFilter import delLogPath [as 別名]
def delLogPath(self, path):
if not self.containsLogPath(path):
logSys.error(path + " is not monitored")
else:
wdInt = self.__watches[path]
wd = self.__monitor.rm_watch(wdInt)
if wd[wdInt]:
del self.__watches[path]
FileFilter.delLogPath(self, path)
logSys.info("Removed logfile = %s" % path)
else:
logSys.error("Failed to remove watch on path: %s", path)