Add logging messages when filesystem starts/stops
This commit is contained in:
parent
43d526eca0
commit
440387e522
@ -6,6 +6,7 @@
|
||||
#include "Filesystem.h"
|
||||
#include <iostream>
|
||||
#include <messmer/cpp-utils/assert/assert.h>
|
||||
#include <messmer/cpp-utils/logging/logging.h>
|
||||
|
||||
using std::vector;
|
||||
using std::string;
|
||||
@ -649,12 +650,12 @@ void Fuse::init(fuse_conn_info *conn) {
|
||||
cpputils::logging::setLevel(DEBUG);
|
||||
#endif
|
||||
|
||||
//LOG(DEBUG) << "init()";
|
||||
LOG(INFO) << "Filesystem started.";
|
||||
}
|
||||
|
||||
void Fuse::destroy() {
|
||||
_running = false;
|
||||
//LOG(DEBUG) << "destroy()";
|
||||
LOG(INFO) << "Filesystem stopped.";
|
||||
}
|
||||
|
||||
int Fuse::access(const bf::path &path, int mask) {
|
||||
|
Loading…
Reference in New Issue
Block a user