Add logging messages when filesystem starts/stops

This commit is contained in:
Sebastian Messmer 2015-10-30 20:18:31 +01:00
parent 43d526eca0
commit 440387e522

View File

@ -6,6 +6,7 @@
#include "Filesystem.h" #include "Filesystem.h"
#include <iostream> #include <iostream>
#include <messmer/cpp-utils/assert/assert.h> #include <messmer/cpp-utils/assert/assert.h>
#include <messmer/cpp-utils/logging/logging.h>
using std::vector; using std::vector;
using std::string; using std::string;
@ -649,12 +650,12 @@ void Fuse::init(fuse_conn_info *conn) {
cpputils::logging::setLevel(DEBUG); cpputils::logging::setLevel(DEBUG);
#endif #endif
//LOG(DEBUG) << "init()"; LOG(INFO) << "Filesystem started.";
} }
void Fuse::destroy() { void Fuse::destroy() {
_running = false; _running = false;
//LOG(DEBUG) << "destroy()"; LOG(INFO) << "Filesystem stopped.";
} }
int Fuse::access(const bf::path &path, int mask) { int Fuse::access(const bf::path &path, int mask) {