Remove logging to ERROR.

GitOrigin-RevId: ee5a540cd62ee4722a770c1007a37756a0edc906
This commit is contained in:
levlam 2018-03-16 15:38:12 +03:00
parent 6e880f7ea0
commit 65fc8f9809

View File

@ -1278,13 +1278,13 @@ void FileManager::load_from_pmc(FileNodePtr node, bool new_remote, bool new_loca
return Status::OK();
};
if (new_remote) {
LOG_STATUS(load(remote));
load(remote);
}
if (new_local) {
LOG_STATUS(load(local));
load(local);
}
if (new_generate) {
LOG_STATUS(load(generate));
load(generate);
}
return;
}