module FSSM::Tree::CacheDebug

Public Instance Methods

ftype(ft) click to toggle source
Calls superclass method
# File lib/fssm/tree.rb, line 111
def ftype(ft)
  FSSM.dbg("Cache#ftype(#{ft})")
  super
end
set(path) click to toggle source
Calls superclass method
# File lib/fssm/tree.rb, line 101
def set(path)
  FSSM.dbg("Cache#set(#{path})")
  super
end
unset(path) click to toggle source
Calls superclass method
# File lib/fssm/tree.rb, line 106
def unset(path)
  FSSM.dbg("Cache#unset(#{path})")
  super
end