Update message severity

This commit is contained in:
benrubson 2017-02-16 17:39:09 +01:00
parent 8a6317eaaf
commit bb5900dada

View File

@ -768,7 +768,7 @@ static bool unmountFS(EncFS_Context *ctx) {
else
rc = system(("/sbin/umount "+std::string(arg->opts->mountPoint)).c_str());
if (!rc) {
RLOG(WARNING) << "Filesystem inactive, unmounted: " << arg->opts->mountPoint;
RLOG(INFO) << "Filesystem inactive, unmounted: " << arg->opts->mountPoint;
return true;
}
else {