Convert old logging calls to new logging macros

This commit is contained in:
Yuri Kunde Schlesner
2014-12-05 23:53:49 -02:00
parent 6390c66e95
commit 0600e2d8b5
65 changed files with 502 additions and 516 deletions

View File

@ -33,7 +33,7 @@ File_SDMC::~File_SDMC() {
*/
bool File_SDMC::Open() {
if (!mode.create_flag && !FileUtil::Exists(path)) {
ERROR_LOG(FILESYS, "Non-existing file %s cant be open without mode create.", path.c_str());
LOG_ERROR(Service_FS, "Non-existing file %s cant be open without mode create.", path.c_str());
return false;
}