Search notes:

VBA class for hierarchical logging: dbgNullWriter

dbgNullWriter is a class that implements dbgWriter and writes the debug text nowhere (think /dev/null).
'
'  vim: ft=vb
'
option explicit
 
implements dbgWriter
 
public sub dbgWriter_out(txt as string) ' {
  ' Explicitely do nothing:
end sub ' }
Github repository VBAModules, path: /dbg/dbgNullWriter.cls

See also

VBA classes for hierarchical logging

Index