Add FTP protocol debugging facilities.
[dftpd.git] / LogNull.hpp
blob7e3feac88537f34e023630425e6ee187eb155ff0
1 #ifndef __DFTPD__LOGNULL_HPP__
2 #define __DFTPD__LOGNULL_HPP__
4 #include <string>
5 #include "Log.hpp"
7 class LogNull : public Log
9 public:
10 void Print( const std::string& txt ) {};
13 #endif