X-Git-Url: http://git.home-dn.net/?p=manu%2Fsuphp.git;a=blobdiff_plain;f=src%2FAPI_Linux_Logger.hpp;h=ed5fc6884c3cedc44da109f6942f9832e1007f74;hp=10a95fc454661f81d400ff7ad2cf0cbd13efc70b;hb=849f4a7977b5780eacae8fad7a078d05f4a615ee;hpb=b0eaa3f1fbf491fdc8a3044cf20754f14254338a diff --git a/src/API_Linux_Logger.hpp b/src/API_Linux_Logger.hpp index 10a95fc..ed5fc68 100644 --- a/src/API_Linux_Logger.hpp +++ b/src/API_Linux_Logger.hpp @@ -35,29 +35,29 @@ namespace suPHP { */ class API_Linux_Logger : public Logger { private: - int logFd; - bool ready; + int logFd; + bool ready; - /** - * Internal log function - implementation - */ - virtual void log(const std::string& classification, - const std::string& message); + /** + * Internal log function - implementation + */ + virtual void log(const std::string& classification, + const std::string& message); public: - /** - * Constructor - */ - API_Linux_Logger(); - - /** - * Initialize (open logfile) - implementation - */ - virtual void init(const Configuration& config) throw (IOException); - /** - * Is Logger initialized? - */ - virtual bool isInitialized(); + /** + * Constructor + */ + API_Linux_Logger(); + + /** + * Initialize (open logfile) - implementation + */ + virtual void init(const Configuration& config) throw (IOException); + /** + * Is Logger initialized? + */ + virtual bool isInitialized(); }; };